Firest commit

This commit is contained in:
MaddoScientisto 2026-03-14 17:25:44 +01:00
commit 2d55f5e6f4
70 changed files with 60789 additions and 0 deletions

17
nginx.conf Normal file
View file

@ -0,0 +1,17 @@
server {
listen 80;
server_name _;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
location ~* \.(?:js|mjs|css|ico|gif|jpe?g|png|svg|webp|woff2?)$ {
expires 7d;
add_header Cache-Control "public, max-age=604800, immutable";
try_files $uri =404;
}
}