From 2c92e580141db98962256c99d8d1f89b1478b20f Mon Sep 17 00:00:00 2001 From: Jimmy Monin Date: Thu, 14 Dec 2017 11:37:40 +0100 Subject: [PATCH] Extend timeouts (for Gallery plugin at least) --- conf/nginx.conf | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/conf/nginx.conf b/conf/nginx.conf index 9cdfa11..3eee860 100644 --- a/conf/nginx.conf +++ b/conf/nginx.conf @@ -23,7 +23,12 @@ location ^~ __PATH__ { # Set max upload size client_max_body_size 10G; 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 gzip off;