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

larger sizes and longer timeouts

This commit is contained in:
Robin Appelman 2018-10-04 19:40:49 +02:00
commit 6596ffcc0e

View file

@ -8,9 +8,9 @@ server {
proxy_pass http://${TARGET}; proxy_pass http://${TARGET};
proxy_set_header Host $host; proxy_set_header Host $host;
proxy_connect_timeout 6000; proxy_connect_timeout 6000;
proxy_send_timeout 6000; proxy_send_timeout 12000;
proxy_read_timeout 6000; proxy_read_timeout 12000;
send_timeout 6000; send_timeout 12000;
client_max_body_size 100M; client_max_body_size 150M;
} }
} }