Skip to content
This repository was archived by the owner on Apr 5, 2024. It is now read-only.

Commit 10f3fe0

Browse files
authored
Feature/proxy timeout (#241)
* increase proxy timeout for filehandler * change nginx systax
1 parent c2e3ba7 commit 10f3fe0

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

webapp_provider/nginx.conf

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,11 @@ http {
3434
}
3535
location /data {
3636
client_max_body_size 30G;
37+
proxy_connect_timeout 600;
38+
proxy_send_timeout 600;
39+
proxy_read_timeout 600;
40+
send_timeout 600;
41+
3742
resolver 127.0.0.11 valid=30s;
3843
set $upstream_Filehandler FileFighterFileHandler;
3944
proxy_pass http://$upstream_Filehandler:5000$uri$is_args$args;

0 commit comments

Comments
 (0)