24 lines
858 B
Text
24 lines
858 B
Text
#Keep-alive
|
|
# www.f5.com/company/blog/nginx/avoiding-top-10-nginx-configuration-mistakes#no-keepalives
|
|
proxy_http_version 1.1;
|
|
proxy_set_header Connection $connection_upgrade; # Defined in /snippets/maps.conf
|
|
|
|
#proxy_cache_bypass $http_upgrade;
|
|
|
|
# Proxy SSL
|
|
proxy_ssl_server_name on;
|
|
|
|
# Proxy headers
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
proxy_set_header Forwarded $proxy_add_forwarded;
|
|
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_set_header Host $host;
|
|
|
|
# Proxy timeouts
|
|
proxy_connect_timeout 30s;
|
|
proxy_send_timeout 60s;
|
|
proxy_read_timeout 60s;
|