Skip to content

Instantly share code, notes, and snippets.

@Laforeta
Last active February 10, 2017 09:46
Show Gist options
  • Save Laforeta/34da32ebc029abf1a1bb05004a5ceddf to your computer and use it in GitHub Desktop.
Save Laforeta/34da32ebc029abf1a1bb05004a5ceddf to your computer and use it in GitHub Desktop.
Generic nginx config for websockets
server {
listen 80;
server_name $your_domain_name;
location / {
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_pass http://127.0.0.1:9000;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment