From d27e33e89a23f84a344efc88f0420cdccaab8164 Mon Sep 17 00:00:00 2001 From: Arjan H Date: Sat, 6 Sep 2025 13:01:10 +0200 Subject: [PATCH] Tweak max upload size for backups (#189) --- nginx.conf | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nginx.conf b/nginx.conf index a370cae..afe9827 100644 --- a/nginx.conf +++ b/nginx.conf @@ -13,6 +13,7 @@ server { include conf.d/custom[.]inc; location /admin/ { + client_max_body_size 50M; return 301 https://$host$request_uri; } @@ -70,7 +71,7 @@ server { } location /admin/ { - client_max_body_size 20M; + client_max_body_size 50M; include conf.d/proxy.inc; proxy_read_timeout 120; proxy_set_header X-Request-Base "/admin";