Add websocket upgrade to example nginx config.

This commit is contained in:
eal 2017-12-07 20:07:51 +02:00
parent 08e7e249b1
commit afd0ea37f3
1 changed files with 3 additions and 0 deletions

View File

@ -19,6 +19,9 @@ server {
server_name example.tld;
location / {
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_pass http://localhost:4000;
}
include snippets/well-known.conf;