From 74cf0ed5c827e3dac0b2d9737e9d1d8d6233e4c5 Mon Sep 17 00:00:00 2001 From: wangbo Date: Wed, 29 Jul 2026 02:02:42 +0800 Subject: [PATCH] =?UTF-8?q?fix(deploy):=20=E9=81=BF=E5=85=8D=E9=AA=8C?= =?UTF-8?q?=E6=94=B6=E5=85=A5=E5=8F=A3=E7=AB=AF=E5=8F=A3=E5=86=B2=E7=AA=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 将宁波跨节点验收私有入口从被 staging Docker 占用的 18088 调整为 18089,避免 NGINX reload 在切换前失败。同步更新真实文件任务验收脚本默认地址。已通过 node --check、bash -n、ShellCheck 和 git diff --check。 --- deploy/nginx/cluster-acceptance-origin-ningbo.conf | 2 +- scripts/cluster/cross-node-file-e2e.mjs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/deploy/nginx/cluster-acceptance-origin-ningbo.conf b/deploy/nginx/cluster-acceptance-origin-ningbo.conf index e14bf28..a730646 100644 --- a/deploy/nginx/cluster-acceptance-origin-ningbo.conf +++ b/deploy/nginx/cluster-acceptance-origin-ningbo.conf @@ -1,6 +1,6 @@ # Private-only deterministic path used by the cross-node acceptance test. server { - listen 10.77.0.1:18088; + listen 10.77.0.1:18089; server_name _; allow 10.77.0.0/24; diff --git a/scripts/cluster/cross-node-file-e2e.mjs b/scripts/cluster/cross-node-file-e2e.mjs index 00f4fbc..8a2b775 100755 --- a/scripts/cluster/cross-node-file-e2e.mjs +++ b/scripts/cluster/cross-node-file-e2e.mjs @@ -51,7 +51,7 @@ function createFixturePNG(width = 256, height = 256) { ]) } -const baseURL = process.env.AI_GATEWAY_E2E_BASE_URL || 'http://10.77.0.1:18088' +const baseURL = process.env.AI_GATEWAY_E2E_BASE_URL || 'http://10.77.0.1:18089' const account = Buffer.from(process.env.E2E_ACCOUNT_B64 || '', 'base64').toString('utf8') const password = Buffer.from(process.env.E2E_PASSWORD_B64 || '', 'base64').toString('utf8') const model = process.env.AI_GATEWAY_E2E_IMAGE_MODEL || 'openai:gpt-image-1'