Haproxy 无法捕获添加的标头

Haproxy 无法捕获添加的标头

我可以使用“http 响应添加标头”功能在 haproxy 中添加新标头,并且它成功完成,因为当我使用 Wireshark 时,我可以在我的 http 数据包中看到这些添加的标头。

问题是我无法捕获它们。我使用“捕获响应标头”功能,通过该功能我可以捕获和记录常见标头,如“Content-Type”或“Connection”,但它对添加的标头不起作用。

这是我的配置文件 haproxy.cfg:

global
    log /dev/log    local0
    log /dev/log    local1 notice
    chroot /var/lib/haproxy
    stats socket /run/haproxy/admin.sock mode 660 level admin
    stats timeout 30s
    user haproxy
    group haproxy
    daemon

defaults
    log     global
    mode    http
    option  httplog
    option  dontlognull
    option  http-server-close
    timeout http-request 5000
    timeout connect 5000
    timeout client  50000
    timeout server  50000

frontend localnodes
    bind 10.0.0.16:80
    mode http
    # Table definition  
    stick-table type ip size 100k expire 30s store conn_cur
    tcp-request connection track-sc1 src

    capture response header X-Test-One len 10
    capture response header X-Test-Two len 10
    capture response header Content-Type len 10
    capture response header Connection len 10


default_backend nodes

backend nodes
    mode http
    balance roundrobin

    http-response add-header X-Test-One %Ts
    http-response add-header X-Test-Two %T

    server web01 123.123.22.22:2222 check maxconn 500

listen stats *:1936
    stats enable
    stats uri /
    stats hide-version
    stats auth notthelogin:notthepassword

当我发出 http 请求时,我的日志文件中有以下内容:

Oct  7 11:12:38 localhost haproxy[20304]: 10.0.0.20:34316 [07/Oct    /2015:11:12:38.972] localnodes nodes/web01 0/0/0/1/1 200 11378 - - ---- 14/14/0/0/0 0/0 {||text/html|close} "GET / HTTP/1.0"

在日志中,我们可以通过“{||text/html|close}”清楚地看到标准报头被捕获,但“|”之间显示为空的 2 个添加报头却没有被捕获。但是,正如我们通过 wireshark 看到的那样,它们位于 http 数据包中

显示自定义标头的 Wireshark 屏幕截图

有谁能帮我吗?我不知道问题出在哪里,我已经为此困扰了两天 :/

谢谢 :)

相关内容