feat: noveria.net coming soon landingpage with galaxy theme
CI - Build & Test / Lint & Build (push) Successful in 8s

This commit is contained in:
2026-06-14 15:52:31 +02:00
parent e389d94efd
commit 2732df9795
5 changed files with 295 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
server {
listen 80;
server_name _;
root /usr/share/nginx/html;
index index.html;
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 Referrer-Policy "no-referrer-when-downgrade" always;
# Cache static assets
location /css/ {
expires 7d;
add_header Cache-Control "public, immutable";
}
}