如何配置nginx以正确提供以下两个网址:
http://xyz/service1 - > http://xyz:port1/service1_home
http://xyz/service2 - > http://xyz:port2/service2_home
如果用户点击此处的登录信息:http://xyz:port1/service1_login则nginx应显示用户的网址,例如http://xyz/service1/service1_login
有可能吗?
答案 0 :(得分:1)
看这里: http://nginx.org/en/docs/http/ngx_http_core_module.html#location
例如:
location /service1 {
proxy_pass http://xyz:port2/service1_home;
}
location /service2 {
proxy_pass http://xyz:port2/service2_home;
}
类似的东西。