From 38594d30a288f0f895294503c2d64f41e35a1293 Mon Sep 17 00:00:00 2001 From: elpatron Date: Thu, 2 Oct 2025 00:09:10 +0200 Subject: [PATCH] Add favicon configuration to Caddyfile - Added favicon.ico redirect to favicon.png (301 redirect) - Added favicon.png serving from /app/dist directory - This fixes favicon loading issues in browsers - Both favicon.ico and favicon.png requests are now handled correctly --- Caddyfile | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/Caddyfile b/Caddyfile index 3d64247..2976e38 100644 --- a/Caddyfile +++ b/Caddyfile @@ -37,3 +37,13 @@ stargirlnails.de { http://stargirlnails.de { redir https://stargirlnails.de{uri} permanent } + +# Favicon-Konfiguration +favicon.ico { + redir /favicon.png 301 +} + +favicon.png { + root * /app/dist + file favicon.png +}