nginx+tomcat 集群

两个tomcat路径分别为

127.0.0.1:8080

127.0.0.1:8081

1. 配置nginx.conf文件

nginx+tomcat 集群_第1张图片

 

upstream servertom{
		#ip_hash;
		server 127.0.0.1:8080 weight=2;
		server 127.0.0.1:8081 weight=2;
}


location / {
            root   html;
            index  index.html index.htm;
		    proxy_pass http://servertom;
}

weight 为访问的权重

 

2.配置完成后,启动nginx.exe

在浏览器中输入 localhost 进行测试

 

 

你可能感兴趣的:(nginx,tomcat)