Added meal planner, pantry and shopping list

This commit is contained in:
2026-03-26 17:10:16 +01:00
parent 7b9db1c5e6
commit c1b3ee5ce6
22 changed files with 2888 additions and 223 deletions

23
nginx/default.conf Normal file
View File

@@ -0,0 +1,23 @@
server {
listen 80;
server_name localhost;
root /usr/share/nginx/html;
index index.html;
# Do not store responses in browser or shared caches (Cloudflare, etc. respect unless overridden)
add_header Cache-Control "no-store, no-cache, must-revalidate, max-age=0" always;
add_header Pragma "no-cache" always;
location = /manifest.webmanifest {
default_type application/manifest+json;
add_header Cache-Control "no-store, no-cache, must-revalidate, max-age=0" always;
}
location = /sw.js {
add_header Cache-Control "no-store, no-cache, must-revalidate, max-age=0" always;
}
location / {
try_files $uri $uri/ /index.html;
}
}