Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save yarkovaleksei/fad04ad21b2d1bbf872483016108a557 to your computer and use it in GitHub Desktop.
Save yarkovaleksei/fad04ad21b2d1bbf872483016108a557 to your computer and use it in GitHub Desktop.
nginx
map $http_upgrade $connection_upgrade {
default "upgrade";
"" "";
}
server {
listen 80;
location / {
proxy_pass http://docker;
proxy_http_version 1.1;
proxy_set_header Connection $connection_upgrade;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment