first commit

This commit is contained in:
2026-03-26 15:18:58 +03:00
parent bc9a8634f9
commit 7957669cd9
1331 changed files with 131661 additions and 0 deletions

16
nginx.conf Normal file
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 /assets/ {
expires 1y;
add_header Cache-Control "public, immutable";
}
}