是否可以将配置参数(在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> ...理想化
frontend
https-in bind :443 ssl strict-sni
crt </path/to/cert1.pem>
crt </path/to/cert2.pem>
crt </path/to/cert3.pem>
...尝试理想时的错误
$ /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.发布于 2018-12-11 04:53:42
不能在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
https://stackoverflow.com/questions/53713425
复制相似问题