Skip to content

Instantly share code, notes, and snippets.

@eftakhairul
Last active November 30, 2016 16:38
Show Gist options
  • Save eftakhairul/ff043da4f2d7d36770a4 to your computer and use it in GitHub Desktop.
Save eftakhairul/ff043da4f2d7d36770a4 to your computer and use it in GitHub Desktop.
Basic nginx configuration with nodejs with PM2
server {
listen 80;
server_name abc.com;
location / {
proxy_pass http://localhost:2222;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment