fix: serve favicon.ico and favicon.svg from root URL via nginx

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-03-18 22:25:29 +00:00
parent 0d7c2da91b
commit 6cadc9b118

View File

@@ -70,6 +70,18 @@ http {
add_header Content-Type application/json;
}
# ================================================================
# Root favicon
# ================================================================
location = /favicon.ico {
alias /usr/share/nginx/portal/favicon.ico;
access_log off;
}
location = /favicon.svg {
alias /usr/share/nginx/portal/favicon.svg;
access_log off;
}
# ================================================================
# Welcome portal (static HTML)
# ================================================================