From 391ab8097272c96b6b167174d7866a3bff96237e Mon Sep 17 00:00:00 2001 From: "Simon L." Date: Thu, 29 Aug 2024 09:52:08 +0200 Subject: [PATCH] fix: re-enable content-length header via htaccess Signed-off-by: Simon L. --- .htaccess | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.htaccess b/.htaccess index 76573880c0b87..f9908fe0b69fc 100644 --- a/.htaccess +++ b/.htaccess @@ -106,5 +106,13 @@ SetEnvIf Transfer-Encoding "chunked" proxy-sendcl=1 +# Apache disabled the sending of the server-side content-length header +# in their 2.4.59 patch updated which breaks some use-cases in Nextcloud. +# Setting ap_trust_cgilike_cl allows to bring back the usual behaviour. +# See https://bz.apache.org/bugzilla/show_bug.cgi?id=68973 + + SetEnv ap_trust_cgilike_cl + + AddDefaultCharset utf-8 Options -Indexes