feat: 更新环境配置,添加 CORS 支持并修改服务器地址

This commit is contained in:
2026-01-19 22:30:12 +08:00
parent 944836c748
commit 3e2d1456eb
12 changed files with 208 additions and 13 deletions

View File

@@ -0,0 +1,14 @@
server {
listen 6666;
server_name mark.cloud-xl.top;
root /opt/browser-bookmark/web;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
access_log /var/log/nginx/mark.cloud-xl.top.access.log;
error_log /var/log/nginx/mark.cloud-xl.top.error.log;
}