0

我正在使用 HA-Proxy 版本 1.3.22 和 Ubuntu 10.04。这是我的配置文件。

global
        maxconn     25000  
        daemon
        nbproc      4 



defaults
        mode        http
        clitimeout  60000
        srvtimeout  30000
        contimeout  4000
        timeout http-request 5s  
        option      httpclose 




listen  http_proxy *:80
        #bind *:80
        balance roundrobin 
        option httpchk
        option forwardfor 
        use_backend bk_web_static if { path_end .jpg .png .gif .css .js }
        default_backend bk_web 


backend bk_web  

        balance roundrobin ## change to URL hashing

        server server1 0.0.0.0:3002 weight 1 maxconn 512 check
        server server2 0.0.0.0:3003 weight 1 maxconn 512 check
        server server3 0.0.0.0:3004 weight 1 maxconn 512 check



backend bk_web_static
  balance roundrobin
        server server1 0.0.0.0:3002 weight 1 maxconn 1000 check
        server server2 0.0.0.0:3006 weight 1 maxconn 1000 check
        server server3 0.0.0.0:3007 weight 1 maxconn 1000 check

运行 haproxy 时出现以下错误。我在网上找到了这个配置代码。我猜该代码是针对某些最新版本的。请告诉我为了运行 haproxy 服务器我做了哪些更改。

 [ALERT] 290/100612 (2745) : parsing [/etc/haproxy/haproxy.cfg:24] : error detected while parsing switching rule.
[ALERT] 290/100612 (2745) : Error(s) found in configuration file : /etc/haproxy/haproxy.cfg
[ALERT] 290/100612 (2745) : Fatal errors found in configuration. 
4

1 回答 1

0

在您的收听会话中尝试使用此配置:

listen  http_proxy *:80
        balance roundrobin 
        option httpchk
        option forwardfor 

        acl is_static path_end -i .jpg .png .gif .css .js 
        use_backend bk_web_static if is_static

        default_backend bk_web
于 2012-11-07T11:32:16.290 回答