使用nginx在同一端口上进行多项服务

时间:2016-03-06 13:09:00

标签: nginx

如何配置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

有可能吗?

1 个答案:

答案 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; } 类似的东西。