Skip to content

Instantly share code, notes, and snippets.

@hanafiah
Created August 15, 2020 16:54
Show Gist options
  • Save hanafiah/db8675e1107592cff13f5586744c884c to your computer and use it in GitHub Desktop.
Save hanafiah/db8675e1107592cff13f5586744c884c to your computer and use it in GitHub Desktop.
map $http_upgrade $connection_upgrade {
default upgrade;
'' close;
}
upstream websocket {
server host.docker.internal:8080;
}
server {
listen 8020;
location / {
proxy_pass http://websocket;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $connection_upgrade;
proxy_set_header Host $host;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment