From 6cadc9b118358ce60564493f8bbfbbd313c3c4fc Mon Sep 17 00:00:00 2001 From: johndoe6345789 Date: Wed, 18 Mar 2026 22:25:29 +0000 Subject: [PATCH] fix: serve favicon.ico and favicon.svg from root URL via nginx Co-Authored-By: Claude Opus 4.6 (1M context) --- deployment/config/nginx/production.conf | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/deployment/config/nginx/production.conf b/deployment/config/nginx/production.conf index b40f3e11e..f64a4b5f3 100644 --- a/deployment/config/nginx/production.conf +++ b/deployment/config/nginx/production.conf @@ -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) # ================================================================