Skip to content

Instantly share code, notes, and snippets.

@zoq
Created August 12, 2015 14:24
Show Gist options
  • Save zoq/12a663f5df95cbe00ccc to your computer and use it in GitHub Desktop.
Save zoq/12a663f5df95cbe00ccc to your computer and use it in GitHub Desktop.
nginx websocket
server {
listen 80;
server_name default_server;
root /home/marcus/src/nn-demos;
index index.html;
location /mnist {
index index.html;
}
}
server {
listen 80;
server_name ws.domain.tld;
root /home/marcus/src/nn-demos;
location /mnist {
proxy_pass http://127.0.0.1:9972;
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