基于Keepalived+Varnish+Nginx实现的高可用LAMP架构(4)

[root@DR1 Desktop]# vim /etc/nginx/nginx.conf
...
    upstream websrvs {
        #server 10.10.0.21:80;
        #server 10.10.0.22:80;
        server 10.10.0.23:6081;  #转发到Varnish服务器
        server 127.0.0.1:80 backup;
    }
...
[root@DR2 Desktop]# systemctl reload nginx.service

客户端再次测试

基于Keepalived+Varnish+Nginx实现的高可用LAMP架构

Linux公社的RSS地址:https://www.linuxidc.com/rssFeed.aspx

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/e2e7f9fa28fa1ca16bb3132cd2cd3f75.html