Skip to content

Instantly share code, notes, and snippets.

@amaudy
Created November 1, 2015 06:23
Show Gist options
  • Save amaudy/31564ed23c40ecd914fa to your computer and use it in GitHub Desktop.
Save amaudy/31564ed23c40ecd914fa to your computer and use it in GitHub Desktop.
Vhost setup for Node app
server {
listen 80;
server_name example.com;
location / {
proxy_pass http://localhost:1337; # forward to node app
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