first commit

This commit is contained in:
编码猿
2025-10-07 20:17:19 +08:00
commit 61b79f6528
33 changed files with 1292 additions and 0 deletions

14
nginx.conf Normal file
View File

@@ -0,0 +1,14 @@
server {
listen 80;
server_name *.ddd.com;
location /app-shared/ {
alias /usr/share/nginx/html/app-shared/;
try_files $uri $uri/ /app-shared/index.html;
add_header 'Access-Control-Allow-Origin' '*';
add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';
add_header 'Access-Control-Allow-Headers' 'DNT,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Range';
add_header 'Access-Control-Expose-Headers' 'Content-Length,Content-Range';
}
}