Skip to content

Instantly share code, notes, and snippets.

@nntoan
Created July 22, 2015 11:27
Show Gist options
  • Save nntoan/f5d6864a87752eab98c6 to your computer and use it in GitHub Desktop.
Save nntoan/f5d6864a87752eab98c6 to your computer and use it in GitHub Desktop.
NodeJs + Nginx
upstream node {
server 127.0.0.1:3000;
}
server {
listen 80;
server_name yoursite.com;
root /path/to/node/app/public;
location / {
try_files $uri $uri/ @node;
}
location @node {
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_pass http://node;
proxy_redirect off;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
}
}
@nntoan
Copy link
Author

nntoan commented Mar 22, 2016

upstream node {
    server 127.0.0.1:3000;
}

Replace :3000 to your node application port.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment