server { listen 8080; server_name _; root /usr/share/nginx/html; index index.html; # SPA: Alle Routen auf index.html weiterleiten location / { try_files $uri $uri/ /index.html; } # Security Headers add_header X-Frame-Options "SAMEORIGIN" always; add_header X-Content-Type-Options "nosniff" always; add_header X-XSS-Protection "1; mode=block" always; add_header Referrer-Policy "strict-origin-when-cross-origin" always; # Caching fuer Assets location ~* \.(js|css|png|jpg|jpeg|gif|ico|svg|woff|woff2)$ { expires 1y; add_header Cache-Control "public, immutable"; } # Kein Caching fuer index.html location = /index.html { add_header Cache-Control "no-cache, no-store, must-revalidate"; } # Gzip gzip on; gzip_types text/plain text/css application/json application/javascript text/xml; gzip_min_length 1000; }