From 04c58e6e0fe0f0d06ad55f40eafc5815d989aafc Mon Sep 17 00:00:00 2001 From: "Julien G." <66769052+jubnl@users.noreply.github.com> Date: Wed, 15 Apr 2026 04:33:33 +0200 Subject: [PATCH] Update client_max_body_size in README Increase client_max_body_size to 500 MB for file uploads. --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 8a41cb7c..25127111 100644 --- a/README.md +++ b/README.md @@ -273,6 +273,9 @@ server { proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme; proxy_read_timeout 86400; + # File uploads are capped at 50 MB; backup restore ZIPs can include the full + # uploads directory and may exceed that — raise this value if restores fail. + client_max_body_size 500m; } location / {