Skip to content

Instantly share code, notes, and snippets.

@shirhatti
Created August 25, 2015 17:36
Show Gist options
  • Save shirhatti/972463156f4a4ff32bc0 to your computer and use it in GitHub Desktop.
Save shirhatti/972463156f4a4ff32bc0 to your computer and use it in GitHub Desktop.
server {
listen 80;
location / {
proxy_pass http://127.0.0.1:5000;
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