Nginx|【Nginx】Nginx配置负载均衡
文章目录
-
- 1.nginx.conf的配置
- 2.9080和9081 tomcat
1.nginx.conf的配置
文章图片
upstream myserver{#ip_hash;
server localhost:9080 weight=1;
server loaclhost:9081 weight=1;
}server {listen9001;
server_namelocalhost;
#server_namewww.mylinux.com #add#charset koi8-r;
#access_loglogs/host.access.logmain;
location / {roothtml;
indexindex.html index.htm;
#proxy_pass http://localhost:9080;
#add
proxy_pass http://myserver;
}
}
2.9080和9081 tomcat
9080和9081 tomcat都有路径webapps/test/a.html
然后在浏览器访问nginx并且带上路径/test/a.html,直接相当于nginx代理过去了:
http://www.mylinux.com:9001/test/a.html-(负载均衡代理)->http://www.mylinux.com:9081(0)/test/a.html
文章图片
文章图片
推荐阅读
- 宽容谁
- 我要做大厨
- 增长黑客的海盗法则
- 画画吗()
- 2019-02-13——今天谈梦想()
- 远去的风筝
- 三十年后的广场舞大爷
- 叙述作文
- 20190302|20190302 复盘翻盘
- 学无止境,人生还很长