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-25 16:29:38 +0200 |
commit | 9875668fc668b6f6df63ccf1c680c983b380c2e9 (patch) | |
tree | 601f7f240fc959ca88eca17304fa0e62b44e1ce4 /.htaccess | |
parent | bf0649de0890d6d2990d283d6d00cef79ff3ae8c (diff) | |
download | nextcloud-server-9875668fc668b6f6df63ccf1c680c983b380c2e9.tar.gz nextcloud-server-9875668fc668b6f6df63ccf1c680c983b380c2e9.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 |