diff options
author | Simon L. <szaimen@e.mail.de> | 2024-04-25 16:29:38 +0200 |
---|---|---|
committer | Simon L <szaimen@e.mail.de> | 2024-04-29 11:10:28 +0200 |
commit | c1a90cbfb9c10ae817c77414676a679e500683c4 (patch) | |
tree | 3719fd5080ed8280320664f77d99a91dd31e9741 /.htaccess | |
parent | 0d64cff1394e9fad8b87ab14e7f3f52daec5dc89 (diff) | |
download | nextcloud-server-c1a90cbfb9c10ae817c77414676a679e500683c4.tar.gz nextcloud-server-c1a90cbfb9c10ae817c77414676a679e500683c4.zip |
fix: chunked upload leading to 0-byte files
Signed-off-by: Simon L <szaimen@e.mail.de>
Diffstat (limited to '.htaccess')
-rw-r--r-- | .htaccess | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/.htaccess b/.htaccess index 102b11236be..f6474c8dbca 100644 --- a/.htaccess +++ b/.htaccess @@ -102,10 +102,8 @@ # Here are more information about the issue: # - https://docs.cyberduck.io/mountainduck/issues/fastcgi/ # - https://docs.nextcloud.com/server/latest/admin_manual/issues/general_troubleshooting.html#troubleshooting-webdav -<IfModule setenvif.c> - <Location "/remote.php"> - SetEnvIf Transfer-Encoding "chunked" proxy-sendcl=1 - </Location> +<IfModule mod_setenvif.c> + SetEnvIf Transfer-Encoding "chunked" proxy-sendcl=1 </IfModule> AddDefaultCharset utf-8 |