<Additional information about your API call. Try to use verbs that match both request type (fetching vs modifying) and plurality (one vs multiple).>
-
URL
<The URL Structure (path only, no root url)>
-
Method:
| // Future versions of Hyper may add additional config options, | |
| // which will not automatically be merged into this file. | |
| // See https://hyper.is#cfg for all currently supported options. | |
| module.exports = { | |
| config: { | |
| // choose either `'stable'` for receiving highly polished, | |
| // or `'canary'` for less polished but more frequent updates | |
| updateChannel: 'stable', |
| bash <(curl -f -L -sS https://ngxpagespeed.com/install) \ | |
| --nginx-version "1.12.1" \ | |
| --dynamic \ | |
| -a '--with-http_ssl_module | |
| --with-http_realip_module | |
| --with-http_dav_module | |
| --with-http_gzip_static_module | |
| --with-http_gunzip_module |
| https://zocada.com/setting-mongodb-users-beginners-guide/ |
| function guid() { | |
| function _p8(s) { | |
| var p = (Math.random().toString(16)+"000000000").substr(2,8); | |
| return s ? "-" + p.substr(0,4) + "-" + p.substr(4,4) : p ; | |
| } | |
| return _p8() + _p8(true) + _p8(true) + _p8(); | |
| } |
| server { | |
| listen 80; | |
| listen [::]:80; | |
| server_name SERVER.COM; | |
| location / { | |
| proxy_pass http://localhost:3000; | |
| proxy_http_version 1.1; | |
| proxy_set_header Upgrade $http_upgrade; |
| var allowPaste = function(e){ | |
| e.stopImmediatePropagation(); | |
| return true; | |
| }; | |
| document.addEventListener('paste', allowPaste, true); |
| #!/bin/bash -ex | |
| # SETUP PERMISSIONS | |
| VPATH=${1%/} | |
| GROUP_WEBWORK=${2} | |
| WEBSERVER="www-data" | |
| HELP="\nHelp: This script is used to fix permissions\nPlease provide the following arguments:\n\t 1) Path to web root\n\t 2) Shared workgroup of website. AKA group ownership\nNote: \"www-data\" (apache default) is assumed as the owner of the web files.\n\nUsage: [sudo] bash ${0##*/} [web_root_path] [group_name]\n" | |
| [ -z "$VPATH" ] && VPATH=`pwd` # is null, use present dir | |
| [ -z "$GROUP_WEBWORK" ] && GROUP_WEBWORK=webwork # is null, set default |
| <script> | |
| jQuery(document).ready(function() { | |
| jQuery("#proform").submit(function(e) { | |
| e.preventDefault(); | |
| var o = jQuery(this).serializeArray(), | |
| t = jQuery(this).attr("action"), | |
| i = jQuery("#formResponse"), | |
| n = jQuery("#cfsubmit"), | |
| form_data = new FormData(jQuery('#proform')[0]); | |
| n.text(); |