diff options
author | Christian Breunig <christian@breunig.cc> | 2024-05-30 14:18:12 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-30 14:18:12 +0200 |
commit | 94ee1d8f1f7f0c539c64f3f1e72e8fa8040a5a97 (patch) | |
tree | cad6b5cdeadfbbcfb986f4532dfd1ae24946a349 /data/templates | |
parent | 8facd624f778742426563916ffb362a1271b33c1 (diff) | |
parent | 5cfca2850ddbd9e2b594de1250d0064c1461ab59 (diff) | |
download | vyos-1x-94ee1d8f1f7f0c539c64f3f1e72e8fa8040a5a97.tar.gz vyos-1x-94ee1d8f1f7f0c539c64f3f1e72e8fa8040a5a97.zip |
Merge pull request #3555 from vyos/mergify/bp/sagitta/pr-3546
reverse-proxy: T6419: build full CA chain when verifying backend server (backport #3546)
Diffstat (limited to 'data/templates')
-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 } |