Initial commit: dotzhauer v4 heimat + Dockerfile/nginx for Coolify

This commit is contained in:
2026-06-03 12:18:42 +02:00
committed by Ihor_Zhekov
commit e8f0da9187
21 changed files with 3347 additions and 0 deletions

49
nginx.conf Normal file
View File

@@ -0,0 +1,49 @@
server {
listen 80;
listen [::]:80;
server_name _;
root /usr/share/nginx/html;
index index.html;
# Gzip
gzip on;
gzip_vary on;
gzip_min_length 1024;
gzip_proxied any;
gzip_comp_level 6;
gzip_types
text/plain
text/css
text/xml
text/javascript
application/javascript
application/json
application/xml
application/xml+rss
image/svg+xml
font/woff
font/woff2;
# Long cache for hashed Vite assets
location /assets/ {
access_log off;
add_header Cache-Control "public, max-age=31536000, immutable";
try_files $uri =404;
}
# Don't cache the entry HTML
location = /index.html {
add_header Cache-Control "no-store, no-cache, must-revalidate";
}
# SPA fallback
location / {
try_files $uri $uri/ /index.html;
}
# Security headers
add_header X-Content-Type-Options "nosniff" always;
add_header X-Frame-Options "SAMEORIGIN" always;
add_header Referrer-Policy "strict-origin-when-cross-origin" always;
}