zoukankan      html  css  js  c++  java
  • HAProxy的高级配置选项-ACL篇之域名重定向案例

              HAProxy的高级配置选项-ACL篇之域名重定向案例

                                           作者:尹正杰

    版权声明:原创作品,谢绝转载!否则将追究法律责任。

    一.安装Apache Httpd及准备测试数据

    1>.试验架构说明

      node102.yinzhengjie.org.cn:
        Haproxy服务器
    
      node105.yinzhengjie.org.cn:
        测试服务器,模拟客户端
    
      node106.yinzhengjie.org.cn:
        Apache httpd服务器
    
      node107.yinzhengjie.org.cn:
        Apache httpd服务器
    
      node108.yinzhengjie.org.cn:
        Apache httpd服务器

    2>.安装Apache httpd服务

      此过程相对简单,我这里就直接略过了,可参考我之前的笔记:https://www.cnblogs.com/yinzhengjie/p/12114195.html

    二.域名重定向实战案例

    1>.编辑haproxy的配置文件

    [root@node102.yinzhengjie.org.cn ~]# cat /etc/haproxy/haproxy.cfg
    global
        maxconn 100000
        chroot /yinzhengjie/softwares/haproxy
        stats socket /yinzhengjie/softwares/haproxy/haproxy.sock mode 600 level admin
        user haproxy
        group haproxy
        daemon
        nbproc 2
        cpu-map 1 0
        cpu-map 2 1
        nbthread 2
        pidfile /yinzhengjie/softwares/haproxy/haproxy.pid
        log 127.0.0.1 local5 info
    
    defaults
        option http-keep-alive
        option  forwardfor
        option redispatch
        option abortonclose
        maxconn 100000
        mode http
        timeout connect 300000ms
        timeout client  300000ms
        timeout server  300000ms
    
    listen status_page
        bind 172.30.1.102:8888
        stats enable
        stats uri /haproxy-status
        stats auth    admin:yinzhengjie
        stats realm "Welcome to the haproxy load balancer status page of YinZhengjie"
        stats hide-version
        stats admin if TRUE
        stats refresh 5s
    
    frontend WEB_PORT_80
        bind 172.30.1.102:80
        mode http
        #定义ACL,匹配客户端请求的主机名
        acl my_pc_page hdr_dom(host) -i pc.yinzhengjie.org.cn
        #定义ACL,匹配客户端浏览器的类型
        acl firefox_agent hdr(User-Agent) -m sub -i "Firefox"
        #调用ACL,如果客户端请求的主机名是"pc.yinzhengjie.org.cn"则请求的资源会被重定向到博客园,和nginx的rewrite功能很像。
        redirect prefix https://www.cnblogs.com/yinzhengjie/ if my_pc_page
        #调用ACL,如果使用火狐浏览器,则调度到firefox_web进行处理
        use_backend firefox_web if firefox_agent
        #如果前面的ACL都没有匹配成功就访问默认的ACL
        default_backend backup_web
    
    backend firefox_web
        server web01 172.30.1.106:80  check inter 3000 fall 3 rise 5
        server web02 172.30.1.107:80  check inter 3000 fall 3 rise 5
    
    backend backup_web
        server web03 172.30.1.108:80  check inter 3000 fall 3 rise 5 
    [root@node102.yinzhengjie.org.cn ~]# 
    [root@node102.yinzhengjie.org.cn ~]# systemctl restart haproxy
    [root@node102.yinzhengjie.org.cn ~]# 

    2>.编辑window客户端的本地文件解析记录,如下图所示。

    3>.任意浏览器访问"http://pc.yinzhengjie.org.cn/"

    4>.使用火狐浏览器访问"http://node102.yinzhengjie.org.cn/"

    5>.使用IE浏览器访问"http://node102.yinzhengjie.org.cn/"

    6>.使用curl模拟各种浏览器访问"http://node102.yinzhengjie.org.cn/"

  • 相关阅读:
    centos 7 pip install MySQL-python 报错
    修改centos history记录数上限
    CentOS 7 如何设置为eth0网卡
    字符串判空有空格报错:binary operator expected
    Linux指定用户运行程序
    MySQL 新建用户,为用户授权,指定用户访问数据库
    解决linux 中文乱码
    UNIX目录访问操作
    通过lseek产生空洞文件
    lseek系统调用
  • 原文地址:https://www.cnblogs.com/yinzhengjie/p/12152274.html
Copyright © 2011-2022 走看看