Skip to content

Instantly share code, notes, and snippets.

@SippieCup
Created October 29, 2021 15:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SippieCup/22e11c768e056940545304b820d13ba9 to your computer and use it in GitHub Desktop.
Save SippieCup/22e11c768e056940545304b820d13ba9 to your computer and use it in GitHub Desktop.
proxy_http_version 1.1;
proxy_cache_bypass $http_upgrade;
# Proxy headers
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "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;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Forwarded-Host $host;
proxy_set_header X-Forwarded-Port $server_port;
# Proxy timeouts
proxy_connect_timeout 60s;
proxy_send_timeout 60s;
proxy_read_timeout 60s;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment