X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=.htaccess;h=af2dc5a7ff24a244d731a5d2382dc496f62d1eda;hb=077908fcb1a2d5c6cc874d686e3965f6035e24ee;hp=19dd72a805e7b3bd170c87aabb25ad4764ca179a;hpb=cabf1b6becbc0143f6a9d0d6846fd948c06b5a64;p=github%2Fshaarli%2FShaarli.git diff --git a/.htaccess b/.htaccess index 19dd72a8..af2dc5a7 100644 --- a/.htaccess +++ b/.htaccess @@ -6,7 +6,28 @@ RewriteEngine On # Prevent accessing subdirectories not managed by SCM RewriteRule ^(.git|doxygen|vendor) - [F] +# Forward the "Authorization" HTTP header +# fixes JWT token not correctly forwarded on some Apache/FastCGI setups +RewriteCond %{HTTP:Authorization} ^(.*) +RewriteRule .* - [e=HTTP_AUTHORIZATION:%1] + # REST API RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^ index.php [QSA,L] + + + + = 2.4> + Require all denied + + + Allow from none + Deny from all + + + + + Require all denied + +