tilfoj kode-generator-web: HTML kodegenerator med 691 danske navneord

This commit is contained in:
gch
2026-07-13 14:18:28 +02:00
parent 97b2af6a05
commit 5154321e58
5 changed files with 1534 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
server {
listen 80;
server_name primegrading.dk www.primegrading.dk localhost;
root /usr/share/nginx/html;
index index.html;
# Gzip
gzip on;
gzip_types text/plain text/css application/javascript text/html;
location / {
try_files $uri $uri/ /index.html;
}
# Cache static assets
location ~* \.(css|js|png|jpg|jpeg|gif|ico|svg|woff2?)$ {
expires 1y;
add_header Cache-Control "public, immutable";
}
# Security headers
add_header X-Frame-Options "SAMEORIGIN";
add_header X-Content-Type-Options "nosniff";
}