1
0
Fork 0
mirror of https://github.com/demostf/proxy synced 2026-06-03 20:14:07 +02:00

increase proxy timeout

This commit is contained in:
Robin Appelman 2018-09-19 23:08:16 +02:00
commit a063683df9

View file

@ -7,10 +7,10 @@ server {
location / {
proxy_pass http://${TARGET};
proxy_set_header Host $host;
proxy_connect_timeout 600;
proxy_send_timeout 600;
proxy_read_timeout 600;
send_timeout 600;
proxy_connect_timeout 6000;
proxy_send_timeout 6000;
proxy_read_timeout 6000;
send_timeout 6000;
client_max_body_size 100M;
}
}