chore: update

This commit is contained in:
2026-06-14 17:36:41 +02:00
parent 1a1d62a1c1
commit 9404b1e77b
12 changed files with 1434 additions and 27 deletions
+16
View File
@@ -0,0 +1,16 @@
server {
listen 80;
server_name _;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
location ~* \.(js|css|png|jpg|jpeg|gif|ico|svg|woff|woff2|ttf|eot)$ {
expires 1y;
add_header Cache-Control "public, immutable";
}
}