nginx代理多个tomcat访问时要端口吗
1个回答
展开全部
一台Linux服务器有多个tomcat服务,多个端口不容易记忆,可以使用nginx反向代理,用一个端口访问到所有的tomcat服务。只需要安装一个nginx,然后配置反向代理即可。
安装nginx这里不在重复。安装好以后修改配置文件,在conf目录下的nginx.conf文件,server里配置反向代理的tomcat信息:
server {
#监听的端口
listen 10001;
server_name 192.168.1.221;
location / {
root html;
index index.html index.htm;
}
location /nrhcm { //配置反向代理的第一个tomcat服务
root html;
proxy_pass http://192.168.1.221:8080/nrhcm;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
client_max_body_size 100m;
index index.html index.htm;
}
location /dhcms {
//配置反向代理的第一个tomcat服务
root html;
proxy_pass http://192.168.1.221:8080/dhcms;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
client_max_body_size 100m;
index index.html index.htm;
}
配置完成以后重启nginx,然后就可以访问了
http://192.168.1.221:10001/nrhcm 访问nrhcm 服务
http://192.168.1.221:10001/dhcms访问dhcms服务
安装nginx这里不在重复。安装好以后修改配置文件,在conf目录下的nginx.conf文件,server里配置反向代理的tomcat信息:
server {
#监听的端口
listen 10001;
server_name 192.168.1.221;
location / {
root html;
index index.html index.htm;
}
location /nrhcm { //配置反向代理的第一个tomcat服务
root html;
proxy_pass http://192.168.1.221:8080/nrhcm;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
client_max_body_size 100m;
index index.html index.htm;
}
location /dhcms {
//配置反向代理的第一个tomcat服务
root html;
proxy_pass http://192.168.1.221:8080/dhcms;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
client_max_body_size 100m;
index index.html index.htm;
}
配置完成以后重启nginx,然后就可以访问了
http://192.168.1.221:10001/nrhcm 访问nrhcm 服务
http://192.168.1.221:10001/dhcms访问dhcms服务
Storm代理
2023-07-25 广告
2023-07-25 广告
StormProxies是一家国内优质海外HTTP代理商,拥有一个庞大的IP资源池,覆盖200多个地区,IP数量大且匿名度高。其优点还包括超高并发、稳定高效、技术服务等特点,同时提供HTTP、HTTPS以及SOCKS5协议支持。此外,Sto...
点击进入详情页
本回答由Storm代理提供
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |