文根改造兼容多场景访问

<< Click to Display Table of Contents >>

当前位置:  部署与集成 

文根改造兼容多场景访问

复制链接

1.适用场景

实现进行文根改造之后,依然可以通过/bi正常链接访问到永洪。

2.部署方案

1)在tomcat/conf/context.xml中配置:<context sessionCookiePath=”/”>

2)在nginx.conf中配置:

         server {

              listen      18082 ;

 

              location /test/test1/bi/

  {

                          proxy_set_header _yh.dynamic.contextPath_ $request_uri;

             proxy_pass http://192.168.0.185:8080/bi/;

             }

         

         location /bi/

             {

             proxy_set_header _yh.dynamic.contextPath_ $request_uri;

             proxy_pass http://192.168.0.185:8080/bi/;

              }

 

              error_page   500 502 503 504  /50x.html;

              location = /50x.html {

                 root   html;

              }

          }

3)访问:http://ip:18082/test/test1/bi/。

4)访问:http://ip:18082/bi/。