diff --git a/Containers/apache/nextcloud.conf b/Containers/apache/nextcloud.conf index f7c720f6..d701a264 100644 --- a/Containers/apache/nextcloud.conf +++ b/Containers/apache/nextcloud.conf @@ -24,4 +24,7 @@ Listen 8000 # Fix zero file sizes # See https://github.com/nextcloud/server/issues/3056#issuecomment-954209565 SetEnv proxy-sendcl 1 + + # See https://httpd.apache.org/docs/current/en/mod/core.html#limitrequestbody + LimitRequestBody 0 diff --git a/reverse-proxy.md b/reverse-proxy.md index 26eee6c1..bcea0033 100644 --- a/reverse-proxy.md +++ b/reverse-proxy.md @@ -64,6 +64,9 @@ Add this as a new Apache site config: Require all denied + + # Support big file uploads + LimitRequestBody 0 ```