Haproxy 多线配置

bea*_*ver 7 haproxy

是否可以将配置参数 (in haproxy.cfg)拆分为多行?

例子

当前的

frontend
     https-in bind :443 ssl strict-sni crt </path/to/cert1.pem> crt </path/to/cert2.pem> crt </path/to/cert3.pem> ...
Run Code Online (Sandbox Code Playgroud)

理想的

frontend 
    https-in bind :443 ssl strict-sni
        crt </path/to/cert1.pem>
        crt </path/to/cert2.pem>
        crt </path/to/cert3.pem>
        ...
Run Code Online (Sandbox Code Playgroud)

尝试理想时出错

$ /usr/sbin/haproxy -c -V -f /etc/haproxy/haproxy.cfg
[ALERT] 343/210133 (25646) : parsing [/etc/haproxy/haproxy.cfg:45] : unknown keyword 'crt' in 'frontend' section
[ALERT] 343/210133 (25646) : Error(s) found in configuration file : /etc/haproxy/haproxy.cfg
[ALERT] 343/210133 (25646) : Fatal errors found in configuration.
Run Code Online (Sandbox Code Playgroud)

jmo*_*ney 6

您不能在 haproxy.cfg 中执行多行语法。

看一下文件格式文档:https : //cbonte.github.io/haproxy-dconv/1.8/configuration.html#2.1

更新:

感谢Venky的评论,我看到还有一个选项可以使用crt-list,它确实为多行 pem 文件引用提供了一个选项。https://cbonte.github.io/haproxy-dconv/1.8/configuration.html#5.1-crt-list