Skip to content

Instantly share code, notes, and snippets.

@marcinkuzminski
Created April 25, 2013 15:08
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marcinkuzminski/5460429 to your computer and use it in GitHub Desktop.
Save marcinkuzminski/5460429 to your computer and use it in GitHub Desktop.
socket.io websockets
upstream yourbacked {
server 127.0.0.1:9000;
}
location /socket.io/ {
proxy_pass http://yourbacked;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment