zmiany cd

This commit is contained in:
Mateusz Gruszczyński
2026-04-06 15:38:16 +02:00
parent 80e181ea3f
commit a8e497fec3
17 changed files with 555 additions and 11315 deletions

View File

@@ -2,6 +2,7 @@ server {
listen 80;
server_name _;
root /usr/share/nginx/html;
server_tokens off;
index index.html;
location / {
@@ -9,8 +10,8 @@ server {
}
location ~* \.(?:css|js|mjs|png|jpg|jpeg|gif|svg|ico|webp|woff2?)$ {
expires 7d;
add_header Cache-Control "public";
expires 1y;
add_header Cache-Control "public, max-age=31536000, immutable" always;
try_files $uri =404;
}
}