Skip to content

Instantly share code, notes, and snippets.

@Hexxeh
Last active August 12, 2016 15:09
Show Gist options
  • Save Hexxeh/0c029ba47f80327250cb6f28eaa57814 to your computer and use it in GitHub Desktop.
Save Hexxeh/0c029ba47f80327250cb6f28eaa57814 to your computer and use it in GitHub Desktop.
map $http_upgrade $connection_upgrade {
default upgrade;
'' close;
}
inside your server block:
location / {
proxy_pass http://127.0.0.1:8092/;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $connection_upgrade;
proxy_read_timeout 6000;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment