diff options
author | Christian Breunig <christian@breunig.cc> | 2024-05-30 13:47:36 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-30 13:47:36 +0200 |
commit | 5978273c679b053dab2b878b476f0fd350a3e243 (patch) | |
tree | a47cae56d9671a5f7cbed2cc139339cd90e5fc9c /data | |
parent | 138be55a8e85bcaee8adfb298363c8afd16075ca (diff) | |
parent | 4b189a76c0a9a28504aab6715658840b929fc243 (diff) | |
download | vyos-1x-5978273c679b053dab2b878b476f0fd350a3e243.tar.gz vyos-1x-5978273c679b053dab2b878b476f0fd350a3e243.zip |
Merge pull request #3546 from c-po/haproxy
reverse-proxy: T6419: build full CA chain when verifying backend server
Diffstat (limited to 'data')
-rw-r--r-- | data/templates/load-balancing/haproxy.cfg.j2 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/templates/load-balancing/haproxy.cfg.j2 b/data/templates/load-balancing/haproxy.cfg.j2 index 797bf17e7..b786a58f8 100644 --- a/data/templates/load-balancing/haproxy.cfg.j2 +++ b/data/templates/load-balancing/haproxy.cfg.j2 @@ -62,7 +62,7 @@ frontend {{ front }} bind {{ address | bracketize_ipv6 }}:{{ front_config.port }} {{ ssl_directive }} {{ ssl_front | join(' ') }} {% endfor %} {% else %} - bind :::{{ front_config.port }} v4v6 {{ ssl_directive }} {{ ssl_front | join(' ') }} + bind [::]:{{ front_config.port }} v4v6 {{ ssl_directive }} {{ ssl_front | join(' ') }} {% endif %} {% if front_config.redirect_http_to_https is vyos_defined %} http-request redirect scheme https unless { ssl_fc } |