Skip to content

Commit 66daaa8

Browse files
authored
Increase timeout settings in nginx configuration
1 parent f6e5497 commit 66daaa8

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

nginx.conf.template

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,9 @@ http {
5151
proxy_pass http://owlery$request_uri;
5252
proxy_http_version 1.1;
5353
proxy_set_header Connection "";
54-
proxy_connect_timeout 900s;
55-
proxy_read_timeout 900s;
56-
proxy_send_timeout 900s;
54+
proxy_connect_timeout 1h;
55+
proxy_read_timeout 1h;
56+
proxy_send_timeout 1h;
5757
# proxy_set_header Host $host;
5858
proxy_set_header X-Real-IP $remote_addr;
5959
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
@@ -85,9 +85,9 @@ http {
8585
proxy_pass http://owlery$request_uri;
8686
proxy_http_version 1.1;
8787
proxy_set_header Connection "";
88-
proxy_connect_timeout 900s;
89-
proxy_read_timeout 900s;
90-
proxy_send_timeout 900s;
88+
proxy_connect_timeout 1h;
89+
proxy_read_timeout 1h;
90+
proxy_send_timeout 1h;
9191
# proxy_set_header Host $host;
9292
proxy_set_header X-Real-IP $remote_addr;
9393
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;

0 commit comments

Comments
 (0)