Initial frontend import

This commit is contained in:
TerryM
2026-05-16 00:18:22 +08:00
commit 9c54ffec76
99 changed files with 14992 additions and 0 deletions

18
nginx.conf Normal file
View File

@@ -0,0 +1,18 @@
server {
listen 80;
server_name _;
root /usr/share/nginx/html;
index index.html;
location ^~ /api/ {
return 404;
}
location ^~ /uploads/ {
return 404;
}
location / {
try_files $uri $uri/ /index.html;
}
}