init commit

This commit is contained in:
Richard Toth
2025-12-19 11:24:46 +01:00
commit c8bf011459
5 changed files with 58 additions and 0 deletions

15
nginx/default.conf Normal file
View File

@@ -0,0 +1,15 @@
server {
listen 80;
server_name _;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ =404;
}
location ~* \.(json|zip|tgz)$ {
add_header Cache-Control "public, max-age=300";
}
}