Add favicon and apple-touch-icon to multiple HTML files; implement toast notification feature in app.js; update duration mode handling; enhance footer navigation and styling; create AGB and Mietbedingungen pages; improve Nginx configuration for HTML file handling; add logo images.

This commit is contained in:
LagoESP
2026-05-09 23:04:29 +02:00
parent 3a902e7138
commit dbb4c27535
13 changed files with 418 additions and 74 deletions
+2 -1
View File
@@ -10,7 +10,8 @@ server {
location ~* \.html$ { add_header Cache-Control "no-store"; try_files $uri =404; }
location / {
try_files $uri $uri/ /index.html;
# Try files with or without .html, then fallback to index
try_files $uri $uri.html $uri/ /index.html;
}
# Static assets: images/fonts can be cached, JS/CSS must revalidate.