如何通过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;}}
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;}#其他配置略}
添加回答
举报
0/150
提交
取消