initial commit

This commit is contained in:
2026-06-09 16:51:15 +07:00
commit 0e130eb137
102 changed files with 520 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
server {
listen 80;
server_name _;
root /usr/share/nginx/html;
index index.html;
location = / {
return 301 /homepage;
}
location /_next/static/ {
expires 365d;
add_header Cache-Control "public, immutable";
}
location /assets/ {
expires 30d;
add_header Cache-Control "public";
}
location /fonts/ {
expires 365d;
add_header Cache-Control "public, immutable";
}
location / {
try_files $uri $uri.html $uri/index.html =404;
}
error_page 404 /404.html;
}