diff --git a/docker/a_th_web/conf/nginx.conf b/docker/a_th_web/conf/nginx.conf index 9b22c21..0803216 100644 --- a/docker/a_th_web/conf/nginx.conf +++ b/docker/a_th_web/conf/nginx.conf @@ -60,6 +60,14 @@ http { proxy_pass http://ruoyi-minio:9000/; } + # WVP-PRO 配置 + location /wvp/ { + proxy_set_header Host $http_host; + proxy_set_header X-Real-IP $remote_addr; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + proxy_pass http://ruoyi-gateway:8080/wvp/; + } + # 避免actuator暴露 if ($uri ~ "/actuator") { return 403;