1.修复创建多个向量库

This commit is contained in:
2026-06-09 13:34:21 +08:00
parent 6cdb38df68
commit f3543f4188
74 changed files with 19636 additions and 3514 deletions

View File

@@ -27,13 +27,6 @@ server {
root /var/www/html;
index index.html;
# 文件直接访问路径 - ^~ 表示前缀匹配且优先级高于正则
location ^~ /files/ {
alias /opt/deploy/uploads/;
add_header Cache-Control "public, max-age=604800";
try_files $uri $uri/ =404;
}
# 静态资源
location ~* \.(js|css|svg|png|jpg|woff|ttf)$ {
expires 7d;
@@ -62,3 +55,4 @@ server {
proxy_set_header Connection '';
}
}