Add favicon to nginx config
Some checks failed
Publish Docker rootless image / Push Docker image to Docker Hub (push) Has been cancelled
Publish Docker image / Push Docker image to Docker Hub (push) Has been cancelled

This commit is contained in:
Aroy-Art 2024-05-28 22:56:28 +02:00
parent 20f0760451
commit f9bf65e107
Signed by: Aroy
GPG key ID: DB9689E9391DD156

View file

@ -14,6 +14,10 @@ server {
disable_symlinks off; disable_symlinks off;
} }
location = /favicon.ico {
alias /opt/www/file-browser/favicon.png;
}
location / { location / {
root /opt/www/file-browser/; root /opt/www/file-browser/;
} }
@ -23,4 +27,4 @@ server {
root /usr/share/nginx/html; root /usr/share/nginx/html;
} }
} }