ce76bb8018
- 删除 design1 ui 遗留代码,修复加载竞态与新建不弹保存提示 - cloud-files 归一化旧版 .soon,IndexedDB 写入完成后再跳转设计页 - 模板/本地 .soon 首次保存须另存为,离开前统一确认 - 发版缓存 bust(version.js、soon-cache.js)及宝塔 Nginx 配置文档 Co-authored-by: Cursor <cursoragent@cursor.com>
40 lines
1.2 KiB
Plaintext
40 lines
1.2 KiB
Plaintext
server {
|
|
listen 8080;
|
|
server_name localhost;
|
|
root /var/www/web;
|
|
index pages/index.web.html;
|
|
charset utf-8;
|
|
absolute_redirect off;
|
|
client_max_body_size 32m;
|
|
location = / { return 302 /pages/index.web.html; }
|
|
location = /pages { return 302 /pages/index.web.html; }
|
|
location = /pages/ { return 302 /pages/index.web.html; }
|
|
location ~* \.(html|web\.html)$ {
|
|
add_header Cache-Control "no-store, no-cache, must-revalidate, max-age=0" always;
|
|
add_header Pragma "no-cache" always;
|
|
add_header Expires "0" always;
|
|
try_files $uri =404;
|
|
}
|
|
location = /config/version.js {
|
|
add_header Cache-Control "no-store, no-cache, must-revalidate, max-age=0" always;
|
|
try_files $uri =404;
|
|
}
|
|
location ~* \.(js|css)$ {
|
|
add_header Cache-Control "no-store, no-cache, must-revalidate, max-age=0" always;
|
|
try_files $uri =404;
|
|
}
|
|
location / { try_files $uri $uri/ =404; }
|
|
}
|
|
|
|
server {
|
|
listen 8081;
|
|
server_name localhost;
|
|
root /var/www/electron;
|
|
index pages/index.html;
|
|
charset utf-8;
|
|
absolute_redirect off;
|
|
client_max_body_size 32m;
|
|
location = / { return 302 /pages/index.html; }
|
|
location / { try_files $uri $uri/ =404; }
|
|
}
|