From d365c40800658437a33caeed24b82eabf6b8c120 Mon Sep 17 00:00:00 2001 From: 12451 <12451@example.com> Date: Thu, 2 Jul 2026 15:43:59 +0800 Subject: [PATCH] =?UTF-8?q?docs:=20=E6=9B=B4=E6=96=B0AGENTS.md=EF=BC=8C?= =?UTF-8?q?=E5=8F=8D=E6=98=A0=E5=88=86=E7=A6=BB=E5=90=8E=E7=9A=84=E7=9B=AE?= =?UTF-8?q?=E5=BD=95=E7=BB=93=E6=9E=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- AGENTS.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/AGENTS.md b/AGENTS.md index e109a58..d606306 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -54,6 +54,7 @@ D:\charging-cabinet\ - 正式环境:API 9000,TCP 9001 **部署路径:** +- 产品介绍页:/data/landing - 正式环境:/data/pms(api-server、device-server、web) - 测试环境:/data/pms_dev(api-server、device-server、web) @@ -196,7 +197,8 @@ server { ssl_protocols TLSv1.2 TLSv1.3; ssl_ciphers HIGH:!aNULL:!MD5; - root /data/pms; + # 产品介绍页 + root /data/landing; index index.html; location /doc/ { @@ -216,7 +218,9 @@ server { proxy_set_header X-Forwarded-Proto $scheme; } + # PMS管理前端 location /pms/ { + alias /data/pms/web/; try_files $uri $uri/ /pms/index.html; } }