Skip to content

Instantly share code, notes, and snippets.

View leandr0ck's full-sized avatar

Leandro Cabrera leandr0ck

  • Tandil, Buenos Aires, Argentina
View GitHub Profile
!/bin/bash
#WHAT DO YOU NEED? (change to TRUE)
VSCode=FALSE
Atom=FALSE
ReactNative=FALSE
CreateReactApp=FALSE
Java=FALSE
@leandr0ck
leandr0ck / gist:d1f2ed933a6accd274c2
Created June 23, 2015 15:27
Nginx Node Frontend / Load Balancer / Static Assets Caching
upstream project {
server 22.22.22.2:3000;
server 22.22.22.3:3000;
server 22.22.22.5:3000;
}
server {
listen 80;
location / {