Linux企业实战-Nginx反向代理

戏子无情 提交于 2020-02-26 12:21:09

编辑文件nginx.conf添加

[root@server1 conf]# vim nginx.conf

 http {
 13     include       mime.types;
 14     default_type  application/octet-stream;
 15         upstream westos{
 16                 server 172.25.254.3:80;
 17 }


server {
 48 
 49         listen 80;
 50         server_name www.westos.org;
 51         location / {
 52                 proxy_pass http://westos;
 53 }
 54 }   

测试

[root@server1 conf]# nginx -t
nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok
nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful

 

同时在真机中/etc/hosts

要写上解析172.25.254.1 www.westos.org westos.org

打开辅助虚拟机server3和server2同时打开hpptd服务

在真机上进行测试

当在upstream中添加

server 172.25.254.2:80;即可实现负载均衡

利用ip_hash;实现同一个ip地址只调用一个ip后端

upstream westos{
                  server 172.25.254.3:80;

                  server 172.25.254.1:80 backup
  }
让server1作为后端,关闭server3http服务此时测试可得


 

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!