Nginx配置proxy_pass
评:
nginx配置proxy_pass,需要注意转发的路径配置
1、location/test/{
proxy_passhttp://t6:8300;
}
2、location/test/{
proxy_passhttp://t6:8300/;
}
上面两种配置,区别只在于proxy_pass转发的路径后是否带“/”
针对情况2,如果访问url=http://server/test/test.jsp,则被nginx代理后,请求路径会变为http://proxy_pass/test.jsp,直接访问server的根资源
针对情况1,如果访问url=http://server/test/test.jsp,则被nginx代理后,请求路径会便问http://proxy_pass/test/test.jsp,将test/作为根路径,请求test/路径下的资源
相关推荐
小木兮子 2020-11-11
敏敏张 2020-11-11
SCNUHB 2020-11-10
wwwsurfphpseocom 2020-10-28
WasteLand 2020-10-18
Cocolada 2020-11-12
杜鲁门 2020-11-05
shirleypaddy 2020-10-19
qingmumu 2020-10-19
Testingba工作室 2020-09-15
周公周金桥 2020-09-13
专注前端开发 2020-08-16
emagtestage 2020-08-16
heniancheng 2020-08-15
hanjinixng00 2020-08-12
小方哥哥 2020-08-09
83327712 2020-07-30
卖小孩的咖啡 2020-07-21
wqiaofujiang 2020-07-05