Skip to content

Commit e5f950b

Browse files
committed
enh(admin): add more timeout configs in the nginx-root-sample and nginx-subdir.conf.sample files
Signed-off-by: Julien Veyssier <julien-nc@posteo.net>
1 parent 680bc7b commit e5f950b

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

admin_manual/installation/nginx-root.conf.sample

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +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;
64+
5965
# Enable gzip but do not remove ETag headers
6066
gzip on;
6167
gzip_vary on;

admin_manual/installation/nginx-subdir.conf.sample

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,12 @@ server {
8080
client_body_timeout 300s;
8181
fastcgi_buffers 64 4K;
8282

83+
# Other timeouts
84+
proxy_connect_timeout 60s;
85+
proxy_send_timeout 60s;
86+
proxy_read_timeout 60s;
87+
send_timeout 60s;
88+
8389
# Enable gzip but do not remove ETag headers
8490
gzip on;
8591
gzip_vary on;

0 commit comments

Comments
 (0)