From 16e4f17f88f8a401209bb03e1ad1b8a9d1709307 Mon Sep 17 00:00:00 2001 From: Tiago Gaspar Date: Mon, 27 Feb 2023 22:51:51 +0000 Subject: [PATCH] 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 Signed-off-by: Kjeld Schouten-Lebbing Co-authored-by: Kjeld Schouten-Lebbing --- charts/stable/nextcloud/Chart.yaml | 2 +- charts/stable/nextcloud/values.yaml | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/charts/stable/nextcloud/Chart.yaml b/charts/stable/nextcloud/Chart.yaml index c40169343cf..b3d468ae301 100644 --- a/charts/stable/nextcloud/Chart.yaml +++ b/charts/stable/nextcloud/Chart.yaml @@ -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 diff --git a/charts/stable/nextcloud/values.yaml b/charts/stable/nextcloud/values.yaml index b94441f6fca..6bd10b454ff 100644 --- a/charts/stable/nextcloud/values.yaml +++ b/charts/stable/nextcloud/values.yaml @@ -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)$ {