Fix: Replace invalid 'file' directive with 'try_files' in Caddyfile

- Changed 'file favicon.png' to 'try_files {path}' which is the correct Caddy syntax
- Updated root path to /app/public for consistency
- This fixes the 'unrecognized directive: file' error in Caddy
This commit is contained in:
2025-10-02 00:20:48 +02:00
parent 6e826922f6
commit e6ffb0ef6d

View File

@@ -44,6 +44,6 @@ favicon.ico {
}
favicon.png {
root * /app/dist
file favicon.png
root * /app/public
try_files {path}
}