zoukankan      html  css  js  c++  java
  • haroxy hdr

    ACL derivatives :ACL的衍生物
    hdr([<name>[,<occ>]])     : exact string match 字符串精确匹配
    hdr_beg([<name>[,<occ>]]) : prefix match        前缀匹配
    hdr_dir([<name>[,<occ>]]) : subdir match
    hdr_dom([<name>[,<occ>]]) : domain match
    hdr_end([<name>[,<occ>]]) : suffix match
    hdr_len([<name>[,<occ>]]) : length match
    hdr_reg([<name>[,<occ>]]) : regex match
    hdr_sub([<name>[,<occ>]]) : substring match
    
    hdr 表示header
    
    
      acl host_www    hdr_beg(host) -i www   ###www开头
    

    acl host_static hdr_beg(host) -i img. video. download. ftp. ##imge. 等开头

    所有的ACL-具体的标准意味着 一个默认的匹配方法,最经常的,

    这些标准是通过连接原始的样子获取方法组成, 匹配方法 比如

    "hdr_beg"  应用于开始匹配样子  取回使用hdr 获取方法。
    
        <hdr>     is the name of a HTTP header in which to fetch the IP to bind to.
    

    This is the name of a comma-separated header list which can
    contain multiple IP addresses. By default, the last occurrence is
    used. This is designed to work with the X-Forwarded-For header
    and to automatically bind to the client’s IP address as seen
    by previous proxy, typically Stunnel. In order to use another
    occurrence from the last one, please see the parameter
    below. When the header (or occurrence) is not found, no binding
    is performed so that the proxy’s default IP address is used. Also
    keep in mind that the header name is case insensitive, as for any
    HTTP header.

    acl monitor hdr_beg(host) -i monitor.test.com #定义ACL名称,对应的请求的主机头是monitor.test.com

  • 相关阅读:
    获取桌面路径
    Winform判断一个窗口是否以模态化方式打开
    Winform弹出子窗体
    Winform 窗体传值 利用委托 子窗体传值给父窗体
    GridView中小的应用
    GridView显示水平滚动条
    GridView中常用属性的设置
    将DevExpress GridView中的数据原样导出到Excel中
    DevExpress 16.2如何汉化
    C#使用NPOI导出Excel
  • 原文地址:https://www.cnblogs.com/zhaoyangjian724/p/6200060.html
Copyright © 2011-2022 走看看