From f9bf65e1071be766d9bcad1deadf1efbaf0ce4cb Mon Sep 17 00:00:00 2001 From: Aroy-Art Date: Tue, 28 May 2024 22:56:28 +0200 Subject: [PATCH] Add favicon to nginx config --- default.conf | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/default.conf b/default.conf index 3efc137..455647c 100644 --- a/default.conf +++ b/default.conf @@ -14,6 +14,10 @@ server { disable_symlinks off; } + location = /favicon.ico { + alias /opt/www/file-browser/favicon.png; + } + location / { root /opt/www/file-browser/; } @@ -23,4 +27,4 @@ server { root /usr/share/nginx/html; } -} \ No newline at end of file +}