remove nginx

This commit is contained in:
2026-04-10 00:25:43 +02:00
parent 9223e4d35f
commit 94527be868
16 changed files with 259 additions and 126 deletions
+10 -2
View File
@@ -1,15 +1,23 @@
server {
listen 80;
root /usr/share/nginx/html;
index index.html;
default_type application/octet-stream;
location / {
try_files $uri $uri/ /index.html;
}
# Cache static assets
location ~* \.html$ {
add_header Cache-Control "no-store, no-cache, must-revalidate";
}
location ~* \.(js|css|png|jpg|jpeg|gif|ico|svg|woff|woff2)$ {
expires 1y;
add_header Cache-Control "public, immutable";
}
}
add_header X-Content-Type-Options nosniff;
}