Browse Source

Extend timeouts (for Gallery plugin at least)

pull/77/head
Jimmy Monin 8 years ago
parent
commit
2c92e58014
  1. 7
      conf/nginx.conf

7
conf/nginx.conf

@ -23,7 +23,12 @@ location ^~ __PATH__ {
# Set max upload size # Set max upload size
client_max_body_size 10G; client_max_body_size 10G;
fastcgi_buffers 64 4K; fastcgi_buffers 64 4K;
# Extend timeouts
client_body_timeout 60m;
proxy_read_timeout 60m;
fastcgi_read_timeout 60m;
# Disable gzip to avoid the removal of the ETag header # Disable gzip to avoid the removal of the ETag header
gzip off; gzip off;

Loading…
Cancel
Save