nginx反向代理多个tomcat服务
Posted Java交流学习平台
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx反向代理多个tomcat服务相关的知识,希望对你有一定的参考价值。
一台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
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
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反向代理多个tomcat服务的主要内容,如果未能解决你的问题,请参考以下文章
Nginx + Tomcat 反向代理 如何在高效的在一台服务器部署多个站点
详解Nginx + Tomcat 反向代理 如何在高效的在一台服务器部署多个站点