doc updates and test fixin

This commit is contained in:
2026-01-22 11:17:06 -08:00
parent 9f7b821760
commit fac98f4c54
56 changed files with 11967 additions and 357 deletions

View File

@@ -46,6 +46,13 @@ server {
proxy_set_header X-Forwarded-Proto $scheme;
}
# Serve flyer images from static storage
location /flyer-images/ {
alias /app/public/flyer-images/;
expires 7d;
add_header Cache-Control "public, immutable";
}
# Proxy all other requests to Vite dev server on port 5173
location / {
proxy_pass http://localhost:5173;