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; } }