HAProxy 解析错误

HAProxy 解析错误

我有 3 台服务器

--> haproxy - server1(uk)
            - server2(ru)

我跟着本教程并为 ru.subnets 创建 ip

现在在我的 /etc/haproxy 中我有这些文件:

haproxy.conf
ru.subnets

在我的 haproxy.conf 中:

frontend http-frontend
    bind  *:80
    mode http
    reqadd X-Forwarded-Proto:\ http

    acl blog_acl path_beg /wp-admin

    acl ru_acl  src -f  RU.subnets

   use_backend wwwru  if ru_acl
    use_backend wwwbackend if !ru_acl

    use_backend wwwru  if blog_acl

    default_backend wwwbackend

一切看起来都很好,但是当我尝试在 haproxy 中加载配置文件时,出现以下错误:

[ALERT] 170/084453 (4661) : parsing [/etc/haproxy/haproxy.cfg:37] : error detected while parsing ACL 'ru_acl'.
[ALERT] 170/084453 (4661) : parsing [/etc/haproxy/haproxy.cfg:39] : error detected while parsing switching rule.
[ALERT] 170/084453 (4661) : parsing [/etc/haproxy/haproxy.cfg:40] : error detected while parsing switching rule.
[ALERT] 170/084453 (4661) : Error(s) found in configuration file : /etc/haproxy/haproxy.cfg
[ALERT] 170/084453 (4661) : Fatal errors found in configuration.

答案1

试试这个:-)

frontend http-frontend
    bind  *:80
    mode http
    reqadd X-Forwarded-Proto:\ http

    acl blog_acl path_beg /wp-admin

    use_backend wwwru  if { src -f RU.subnets }
    use_backend wwwbackend { src -f RU.subnets }

    use_backend wwwru  if blog_acl

    default_backend wwwbackend

相关内容