Initial import

This commit is contained in:
2026-06-23 15:47:39 +08:00
commit 74ad7f1524
134 changed files with 13769 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
server {
listen 3000;
server_name _;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
}