Skip to content

Commit 8486c74

Browse files
committed
enh(admin): comment timeout configs in nginx-root-sample and nginx-subdir.conf.sample
Signed-off-by: Julien Veyssier <[email protected]>
1 parent 7f42432 commit 8486c74

File tree

2 files changed

+12
-10
lines changed

2 files changed

+12
-10
lines changed

admin_manual/installation/nginx-root.conf.sample

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -56,11 +56,12 @@ server {
5656
client_body_timeout 300s;
5757
fastcgi_buffers 64 4K;
5858

59-
# Other timeouts
60-
proxy_connect_timeout 60s;
61-
proxy_send_timeout 60s;
62-
proxy_read_timeout 60s;
63-
send_timeout 60s;
59+
# Proxy and client response timeouts
60+
# Uncomment an increase these if facing timeout errors during large file uploads
61+
#proxy_connect_timeout 60s;
62+
#proxy_send_timeout 60s;
63+
#proxy_read_timeout 60s;
64+
#send_timeout 60s;
6465

6566
# Enable gzip but do not remove ETag headers
6667
gzip on;

admin_manual/installation/nginx-subdir.conf.sample

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -82,11 +82,12 @@ server {
8282
client_body_timeout 300s;
8383
fastcgi_buffers 64 4K;
8484

85-
# Other timeouts
86-
proxy_connect_timeout 60s;
87-
proxy_send_timeout 60s;
88-
proxy_read_timeout 60s;
89-
send_timeout 60s;
85+
# Proxy and client response timeouts
86+
# Uncomment an increase these if facing timeout errors during large file uploads
87+
#proxy_connect_timeout 60s;
88+
#proxy_send_timeout 60s;
89+
#proxy_read_timeout 60s;
90+
#send_timeout 60s;
9091

9192
# Enable gzip but do not remove ETag headers
9293
gzip on;

0 commit comments

Comments
 (0)