diff --git a/docs/installation/apache.md b/docs/installation/apache.md index 4b268509..5e8be71f 100644 --- a/docs/installation/apache.md +++ b/docs/installation/apache.md @@ -75,6 +75,7 @@ Place your virtual host configuration in the appropriate section within `/etc/ht ProxyPassMatch ^/static ! ProxyPassMatch ^/robots.txt ! + ProxyPassMatch ^/favicon.ico ! ProxyPass / http://127.0.0.1:8000/ ProxyPassReverse / http://127.0.0.1:8000/ @@ -82,6 +83,7 @@ Place your virtual host configuration in the appropriate section within `/etc/ht Alias "/static" "/var/www/myauth/static" Alias "/robots.txt" "/var/www/myauth/static/robots.txt" + Alias "/favicon.ico" "/var/www/myauth/static/allianceauth/icons/favicon.png" Require all granted @@ -91,6 +93,11 @@ Place your virtual host configuration in the appropriate section within `/etc/ht SetHandler None Require all granted + + + SetHandler None + Require all granted + ```