Skip to content

Instantly share code, notes, and snippets.

@ababup1192
Created February 23, 2015 20:28
Show Gist options
  • Save ababup1192/6ad4dde93bbca123450d to your computer and use it in GitHub Desktop.
Save ababup1192/6ad4dde93bbca123450d to your computer and use it in GitHub Desktop.
nginx websocket
upstream backend {
server localhost:9000;
}
server {
listen 80;
server_name hoge.org;
location / {
proxy_pass http://backend;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_connect_timeout 43200000;
proxy_read_timeout 86400;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment