为了账号安全,请及时绑定邮箱和手机立即绑定

nginx通过url访问本机不同tomcat

nginx通过url访问本机不同tomcat

紫衣仙女 2019-05-21 16:32:24
如何通过nginx来访问本机开放的不同端口的tomcat,比如本机有六个tomcat分别为tomcat18080tomcat28081tomcat38082tomcat48083tomcat58084tomcat68085然后服务器新部署nginx服务,让所有的服务都能通过nginx的80来访问比如http://192.168.102.100/tomcat1访问tomcat1下面的项目http://192.168.102.100/tomcat2访问tomcat2下面的项目http://192.168.102.100/tomcat3访问tomcat3下面的项目http://192.168.102.100/tomcat4访问tomcat4下面的项目
查看完整描述

2 回答

?
冉冉说

TA贡献1877条经验 获得超1个赞

通过配置文件反向代理即可,在nginx.conf中增加如下location,并将localhost改为需要的ip。
server{
location/tomcat1{
proxy_set_headerX-Real-IP$remote_addr;
proxy_passhttp://localhost:8081;
}
location/tomcat2{
proxy_set_headerX-Real-IP$remote_addr;
proxy_passhttp://localhost:8082;
}
location/tomcat3{
proxy_set_headerX-Real-IP$remote_addr;
proxy_passhttp://localhost:8083;
}
}
                            
查看完整回答
反对 回复 2019-05-21
?
GCT1015

TA贡献1827条经验 获得超4个赞

//把nginx默认的配置文件备份下,改改就可以了。server{        #这是你要代理到的80端口        listen    80;        #这是访问的域名        server_name  http://localhost;
        roothtml;
        access_log  logs/nginx.access.log  main;                #然后下面才是你要代理的几个tomcat         #默认请求        location/{            indexindex.phpindex.htmlindex.htm;          }        location/tomcat1{
proxy_set_headerX-Real-IP$remote_addr;
proxy_passhttp://localhost:8081;
}
location/tomcat2{
proxy_set_headerX-Real-IP$remote_addr;
proxy_passhttp://localhost:8082;
}
location/tomcat3{
proxy_set_headerX-Real-IP$remote_addr;
proxy_passhttp://localhost:8083;
}
#其他配置略
}
                            
查看完整回答
反对 回复 2019-05-21
  • 2 回答
  • 0 关注
  • 1276 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信