Skip to content

Instantly share code, notes, and snippets.

@mudivili
Created May 28, 2017 07:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mudivili/b7b8ec4c066d13cceac58fb50d36fb07 to your computer and use it in GitHub Desktop.
Save mudivili/b7b8ec4c066d13cceac58fb50d36fb07 to your computer and use it in GitHub Desktop.
nginx websocket reverse proxy
map $http_upgrade $connection_upgrade {
default upgrade;
'' close;
}
upstream websocket {
server 127.0.0.1:3001;
}
server {
listen 80;
location / {
proxy_pass http://websocket;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $connection_upgrade;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment