VK Friseur Demo-Website (Astro) – initial

This commit is contained in:
2026-06-24 10:39:10 +00:00
commit 20b7fe53a0
16 changed files with 6207 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
server {
listen 80;
server_name _;
root /usr/share/nginx/html;
index index.html;
gzip on;
gzip_types text/css application/javascript image/svg+xml;
gzip_min_length 256;
location / {
try_files $uri $uri/ $uri.html /index.html;
}
location ~* \.(webp|jpg|jpeg|png|svg|woff2|css|js)$ {
expires 30d;
add_header Cache-Control "public, max-age=2592000";
}
}