From 2303eebcc8b24c745aa866dd6299459532201da8 Mon Sep 17 00:00:00 2001 From: acsfer Date: Fri, 16 Apr 2021 10:05:02 +0200 Subject: [PATCH] Update .htaccess (PHP8 and mod_lsapi) - Add `mod_lsapi` (Cloudlinux) authorization headers - Add `mod_php8` php_values - Reformating for better lisibilty --- .htaccess | 39 +++++++++++++++++++++++++++++---------- 1 file changed, 29 insertions(+), 10 deletions(-) diff --git a/.htaccess b/.htaccess index 2a6a0cbfac6..46e83b17e1f 100644 --- a/.htaccess +++ b/.htaccess @@ -7,6 +7,10 @@ SetEnvIfNoCase Authorization "(.+)" HTTP_AUTHORIZATION=$1 + + SetEnvIfNoCase ^Authorization$ "(.+)" XAUTHORIZATION=$1 + RequestHeader set XAuthorization %{XAUTHORIZATION}e env=XAUTHORIZATION + @@ -48,6 +52,7 @@ Header set Cache-Control "max-age=604800" + php_value mbstring.func_overload 0 php_value default_charset 'UTF-8' @@ -56,6 +61,29 @@ SetEnv htaccessWorking true + + + php_value mbstring.func_overload 0 + php_value default_charset 'UTF-8' + php_value output_buffering 0 + + SetEnv htaccessWorking true + + + + + AddType image/svg+xml svg svgz + AddEncoding gzip svgz + + + + DirectoryIndex index.php index.html + + + + ModPagespeed Off + + RewriteEngine on RewriteCond %{HTTP_USER_AGENT} DavClnt @@ -68,15 +96,6 @@ RewriteRule ^\.well-known/(?!acme-challenge|pki-validation) /index.php [QSA,L] RewriteRule ^(?:\.(?!well-known)|autotest|occ|issue|indie|db_|console).* - [R=404,L] - - AddType image/svg+xml svg svgz - AddEncoding gzip svgz - - - DirectoryIndex index.php index.html - + AddDefaultCharset utf-8 Options -Indexes - - ModPagespeed Off -