File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 8686
8787 // oauth2-proxy
8888 oauth_enabled: false ,
89+
90+ // Nginx proxy_read_timeout (in seconds) 60s is the nginx default
91+ nginx_proxy_read_timeout: '60' ,
92+ // Nginx proxy_send_timeout (in seconds) 60s is the nginx default
93+ nginx_proxy_send_timeout: '60' ,
8994 },
9095}
Original file line number Diff line number Diff line change 99 proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
1010 proxy_set_header X-Forwarded-Proto $scheme;
1111 proxy_set_header X-Forwarded-Host $http_host;
12- ||| % service + if allowWebsockets then |||
12+ proxy_read_timeout %(nginx_proxy_read_timeout)s;
13+ proxy_send_timeout %(nginx_proxy_send_timeout)s;
14+ ||| % (service + $._config) + if allowWebsockets then |||
1315 # Allow websocket connections https://www.nginx.com/blog/websocket-nginx/
1416 proxy_set_header Upgrade $http_upgrade;
1517 proxy_set_header Connection "Upgrade";
You can’t perform that action at this time.
0 commit comments