nginx通过url访问本机不同tomcat

如何通过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下面的项目
紫衣仙女
浏览 1277回答 2
2回答

冉冉说

通过配置文件反向代理即可,在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

//把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;}#其他配置略}
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript