Skip to content

Instantly share code, notes, and snippets.

@macrov
macrov / default.conf
Created March 12, 2018 12:35 — forked from 17twenty/default.conf
Websocket Nginx Configuration with Go App
server {
listen 80;
server_name goapp-server.curiola.com;
location / {
proxy_pass http://websocket;
proxy_http_version 1.1;
proxy_redirect off;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $connection_upgrade;
@macrov
macrov / 0_reuse_code.js
Created February 22, 2016 13:34
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
curl https://raw.github.com/git/git/master/contrib/completion/git-completion.bash -o ~/.git-completion.bash
echo "source ~/.git-completion.bash" >> ~/.bash_profile