Skip to content

Instantly share code, notes, and snippets.

@Antrikshy
Created April 11, 2015 07:15
Show Gist options
  • Save Antrikshy/c471a0ac0c96f6cb1e5b to your computer and use it in GitHub Desktop.
Save Antrikshy/c471a0ac0c96f6cb1e5b to your computer and use it in GitHub Desktop.
nginx config for Quibbler.co, Express.js apps listening on port 3000
# Goes in /etc/nginx/conf.d/
upstream quibbler {
server 127.0.0.1:3000;
}
server {
listen 0.0.0.0:80;
server_name quibbler.co www.quibbler.co;
location / {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_set_header X-NginX-Proxy true;
proxy_pass http://quibbler/;
proxy_redirect off;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment