From 2633c830c9a05bfe57822c00f5048ce8f55af535 Mon Sep 17 00:00:00 2001 From: 12451 <12451@example.com> Date: Thu, 2 Jul 2026 15:42:51 +0800 Subject: [PATCH] =?UTF-8?q?refactor:=20=E5=88=86=E7=A6=BB=E4=BA=A7?= =?UTF-8?q?=E5=93=81=E4=BB=8B=E7=BB=8D=E9=A1=B5(/data/landing)=E5=92=8CPMS?= =?UTF-8?q?=E5=89=8D=E7=AB=AF(/data/pms/web)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- deploy/nginx/app.anzhizhichong.com.conf | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/deploy/nginx/app.anzhizhichong.com.conf b/deploy/nginx/app.anzhizhichong.com.conf index 505f58a..32c9cc0 100644 --- a/deploy/nginx/app.anzhizhichong.com.conf +++ b/deploy/nginx/app.anzhizhichong.com.conf @@ -13,7 +13,8 @@ server { ssl_protocols TLSv1.2 TLSv1.3; ssl_ciphers HIGH:!aNULL:!MD5; - root /data/www; + # 产品介绍页 + root /data/landing; index index.html; location /doc/ { @@ -33,8 +34,9 @@ server { proxy_set_header X-Forwarded-Proto $scheme; } + # PMS管理前端 location /pms/ { - alias /data/pms/; + alias /data/pms/web/; try_files $uri $uri/ /pms/index.html; } }