fix: decrypt

This commit is contained in:
zzc
2025-05-05 18:14:22 +08:00
parent 496a0cce52
commit 36ad546e99
13 changed files with 8815 additions and 6561 deletions

11
nginx.conf Normal file
View File

@@ -0,0 +1,11 @@
server {
listen 80;
server_name localhost;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
}