其他分享
首页 > 其他分享> > haproxy 基于 hdr 实现调度

haproxy 基于 hdr 实现调度

作者:互联网

frontend webserver
        bind *:80
        use_backend websrvs

backend websrvs
        balance hdr (User-Agent)    # 根据请求报文中 User-Agent 首部的值做 hash
        hash-type consistent    # 一致性 hash
        server web1 192.168.2.11:80 check
        server web2 192.168.2.12:80 check

  

标签:haproxy,hash,hdr,websrvs,调度,192.168,80,check,backend
来源: https://www.cnblogs.com/ckh2014/p/15777641.html