feat(micro/acid): 酸轧新增「模型」tab,对接六机架轧制模型服务

- 新增/mill-api代理(dev+nginx),指向klp-ml-mill FastAPI服务
- Model.vue:当前卷/下一卷,L2实测 vs 我们模型预测,逐机架对照
- 鉴权Key通过VUE_APP_MILL_API_KEY环境变量注入,不写死在源码里
This commit is contained in:
2026-07-08 13:38:03 +08:00
parent 70251cd9d1
commit 9ce8807ed6
6 changed files with 456 additions and 2 deletions

View File

@@ -81,6 +81,15 @@ http {
proxy_pass http://server/;
}
# 酸轧六机架轧制模型服务(klp-ml-mill FastAPI)
location /mill-api/ {
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header REMOTE-HOST $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_pass http://117.72.159.31:10001/;
}
# https 会拦截内链所有的 http 请求 造成功能无法使用
# 解决方案1 将 admin 服务 也配置成 https
# 解决方案2 将菜单配置为外链访问 走独立页面 http 访问