Scaffold and Phase 1

This commit is contained in:
2026-05-02 19:46:42 -05:00
parent ab74e7cad4
commit d909cb7c30
92 changed files with 4967 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
server {
listen 80;
root /usr/share/nginx/html;
index index.html;
# Gzip
gzip on;
gzip_types text/plain text/css application/javascript application/json image/svg+xml;
# PWA all routes fall back to index.html
location / {
try_files $uri $uri/ /index.html;
}
# Cache hashed assets aggressively
location ~* \.(js|css|woff2|png|ico|svg)$ {
expires 1y;
add_header Cache-Control "public, immutable";
}
# Never cache the service worker or manifest
location ~* (service-worker\.js|manifest\.webmanifest)$ {
expires off;
add_header Cache-Control "no-store";
}
}