From: ArthurHoaro Date: Tue, 10 Nov 2020 09:45:05 +0000 (+0100) Subject: Merge pull request #1630 from ArthurHoaro/fix/apache-config X-Git-Tag: v0.12.1^2~4 X-Git-Url: https://git.immae.eu/?a=commitdiff_plain;h=7e78237fc9106f5f53802c36ce26be0b44938255;hp=325cc8adadacef7c4d2d0aa2d26c9d87ce216058;p=github%2Fshaarli%2FShaarli.git Merge pull request #1630 from ArthurHoaro/fix/apache-config Reviewed Apache configuration --- diff --git a/.htaccess b/.htaccess index 25fcfb03..9d1522df 100644 --- a/.htaccess +++ b/.htaccess @@ -13,7 +13,7 @@ RewriteRule .* - [e=HTTP_AUTHORIZATION:%1] # Alternative (if the 2 lines above don't work) # SetEnvIf Authorization .+ HTTP_AUTHORIZATION=$0 -# REST API +# Slim URL Redirection # Ionos Hosting needs RewriteBase / # RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f diff --git a/doc/md/Server-configuration.md b/doc/md/Server-configuration.md index 5b8aff53..a49b6033 100644 --- a/doc/md/Server-configuration.md +++ b/doc/md/Server-configuration.md @@ -193,19 +193,24 @@ sudo nano /etc/apache2/sites-available/shaarli.mydomain.org.conf Require all granted - - # Prevent accessing dotfiles - RedirectMatch 404 ".*" - + # BE CAREFUL: directives order matter! - + + Require all denied + + + + Require all granted + + + # allow client-side caching of static files Header set Cache-Control "max-age=2628000, public, must-revalidate, proxy-revalidate" - + + # serve the Shaarli favicon from its custom location Alias favicon.ico /var/www/shaarli.mydomain.org/images/favicon.ico - ```