This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
#Adding sources for NodeJS | |
cat <<EOT | sudo cp /dev/stdin /etc/apt/sources.list.d/nodesource.list | |
deb https://deb.nodesource.com/node_7.x yakkety main | |
deb-src https://deb.nodesource.com/node_7.x yakkety main | |
EOT | |
#Adding NodeJS's public key | |
curl -s https://deb.nodesource.com/gpgkey/nodesource.gpg.key | sudo apt-key add |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Conf | |
RUST=1.21.0 | |
LUAJIT=2.1.0-beta3 | |
CC=gcc | |
CFLAGS+=-pipe | |
MAKEFLAGS+=-j`nproc` | |
export CFLAGS MAKEFLAGS | |
# Exit if any exit 1 | |
set -e |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
OPENSSL=openssl-1.0.2o | |
OPENRESTY=openresty-1.13.6.2 | |
LUAROCKS=2.4.4 | |
LUAJIT=LuaJIT-2.1.0-beta3 | |
NGX=nginx-1.15.1 | |
PCRE=8.42 | |
# OpenSSL 1.1 & PCRE2 (10.0) aren't _yet_ supported. | |
# https://github.com/openresty/lua-nginx-module/issues/852 | |
# https://stackoverflow.com/a/34795745 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# The script will ask you some questions when rendering the private key. | |
# | |
OPENSSL=openssl-1.1.0g | |
CFLAGS+=-pipe | |
MAKEFLAGS+=-j`nproc` | |
CPATH=/opt/openssl/include | |
LIBRARY_PATH=/opt/openssl/lib | |
export CFLAGS MAKEFLAGS LIBRARY_PATH CPATH | |
set -e |
[DEPRECATED] Take a look at H2O webserver.
Features of ngx_wizard
:
- Optimized nginx ;
- Tweaked settings ;
- Bleading Edge ;
- Self Contained Package ;
- Compiled from scratch ;
- Based on shared libraries ;
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<OpenSearchDescription xmlns='http://a9.com/-/spec/opensearch/1.1/' xmlns:moz='http://www.mozilla.org/2006/browser/search/'> | |
<ShortName>Google Encrypted</ShortName> | |
<Description>Enhanced Google search</Description> | |
<InputEncoding>UTF-8</InputEncoding> | |
<Image width='16' height='16'> | |
data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABgCAYAAADimHc4AAAHqklEQVR4Ae2dVXgbSRaFe5lelnnfluFlmCnMzMzMzMwMCjPMKOsxM7MVh5kTc0AMJePDWd+dT172WupuVXVc+b4zwZF0/9N1763qVpUS+AHgSzU1NWOrq6vPN8rr9/shihhj6v8fziKmxJYYE2sACon+Q/pp419mGAi4oQ0h1sQ8YMCXeMMnOPzfk4sJX1Iah8Q4AYNvFYZQOlIoL/EPtHWaQOwVfgVXitgrrfVqFyUGRcLnG4uix4cVH744cSl8A5NSZLrhG7Mi4fONXZHwuZjAvwZIiW+ANECmHf3ZKKLDZ3YbvJZ8uE8cgmP5PDhmjoN9zADY+nWCtdN7sLZ/C7Yen8A2oDMc4weD/o3rwE54kuPAykuFN0EREb7v3h249u+EfXR/WNu+AWub10OWbXB3OLeuhfeihb8JItcAZrXCE3EW9olDCZwuolFCI4lZX8gi3CS3C+4zx2Dr2YYghUddPoDLtI1M528At9TDGDyxn9NVSVC4yNa7HdxRZq6piIsBvopyOGZNIAhCyLloBqUl/gaEA74nJwO2Xm0pcKFkG9IDvlvXw26CEk74LtN2ClZYUVvriY/SwwTORZgxuDavpiDFV8d34Htw7yXqgnw+ONcsNgx8b17Wy9WGOlfOl/B5GeA6fkDCD9YArYo |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
GOVER=1.9.1 | |
curl https://storage.googleapis.com/golang/go$GOVER.linux-amd64.tar.gz --silent | sudo tar xzC /usr/local | |
cd | |
echo . \~/.goenv >> .bashrc | |
cat > .goenv <<EOT | |
for i in /usr/local/go ~/go | |
do PATH+=:\$i/bin | |
done | |
export PATH | |
GOCODE=\$(go env GOPATH) |
OlderNewer