这是某种 haproxy 错误吗?

这是某种 haproxy 错误吗?

我从http://sniffyourkid.com然后将网址更改为http://sniffyourkid.com/blog无法转到 apache,而是转到我的另一个 web 服务器,sniffyourkid.com 就在那里。这种情况是间歇性的,有时更常从 www.sniffyourkid.com/ 转到 www.sniffyourkid.com/blog。如果我刷新几次,它最终会转到 apache。这太奇怪了。在 wireshark 中,我从跟踪中看到,它错误地访问了错误的 web 服务器,并且我看到奇怪的 TCP 无序数据包(不确定这是否重要)

# this config needs haproxy-1.1.28 or haproxy-1.2.1

global
        log 127.0.0.1   local0
        log 127.0.0.1   local1 notice
        #log loghost    local0 info
        maxconn 4096
        #chroot /usr/share/haproxy
        user haproxy
        group haproxy
        daemon
        #debug
        #quiet

defaults
        log     global
        mode    http
        option  httplog
        option  dontlognull
        retries 3
        option redispatch
        maxconn 2000
        contimeout      5000
        clitimeout      50000
        srvtimeout      50000

frontend http_proxy
        bind 0.0.0.0:80
        acl is_blog path_beg /blog
        acl is_stats path_beg /haproxystats
        use_backend cluster2 if is_blog
        use_backend statistics if is_stats
        use_backend cluster1 if !is_blog !is_stats

backend statistics
        stats enable
        stats uri /haproxystats

backend cluster1
        option httpchk
        cookie  SERVERID rewrite
        server  server1 127.0.0.1:9080 cookie inst1cookie check inter 2000 rise 2 fall 5

backend cluster2
        option httpchk
        cookie  SERVERID rewrite
        server  server1 127.0.0.1:8080 cookie inst1cookie check inter 2000 rise 2 fall 5

我认为是这个版本,对的......

root@Sniffy:/etc/haproxy# apt-show-versions haproxy
haproxy/precise uptodate 1.4.18-0ubuntu1

答案1

您的配置缺少“选项 http-server-close”,因此它在隧道模式下工作。

相关内容