return 404 on /favicon.ico

master
BuckarooBanzay 2021-06-01 07:27:58 +02:00
parent a99335c01f
commit 5ec1617389
1 changed files with 4 additions and 0 deletions

View File

@ -9,6 +9,10 @@ location / {
access_log off;
}
location /favicon.ico {
return 404;
}
location ~ ^/wiki(.*) {
return 302 /$1;
}