nextcloud: nginx: sync timeout with PHP timeout (#7461)

Currently nginx is configured to timeout at 300s which isn't following
the  PHP timeout.
Sync them so that they both timeout at the same time and so that big
file uploads and moves don't spit an 504 Gateway Timeout error.

Signed-off-by: Tiago Gaspar <tiagogaspar8@gmail.com>
Signed-off-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
Co-authored-by: Kjeld Schouten-Lebbing <kjeld@schouten-lebbing.nl>
This commit is contained in:
Tiago Gaspar
2023-02-27 22:51:51 +00:00
committed by GitHub
parent fa53189f0c
commit 16e4f17f88
2 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -37,7 +37,7 @@ sources:
- https://github.com/nextcloud/docker
- https://github.com/nextcloud/helm
type: application
version: 19.0.51
version: 19.0.52
annotations:
truecharts.org/catagories: |
- cloud
+4 -4
View File
@@ -345,10 +345,10 @@ configmap:
fastcgi_intercept_errors on;
fastcgi_request_buffering off;
proxy_send_timeout 300s;
proxy_read_timeout 300s;
fastcgi_send_timeout 300s;
fastcgi_read_timeout 300s;
proxy_send_timeout 3600s;
proxy_read_timeout 3600s;
fastcgi_send_timeout 3600s;
fastcgi_read_timeout 3600s;
}
location ~ \.(?:css|js|svg|gif)$ {