Commit 218037a1 authored by Łukasz Nowak's avatar Łukasz Nowak

XXX explain matching per connected endpoint

parent 39fe4012
Pipeline #12497 failed with stage
in 0 seconds
......@@ -38,7 +38,7 @@ md5sum = df304a8aee87b6f2425241016a48f7a5
[template-frontend-haproxy-configuration]
_update_hash_filename_ = templates/frontend-haproxy.cfg.in
md5sum = df0094531cef21cacf9f73a52cd35d66
md5sum = 66a197ba35871f6ea2c0607a3ca873e8
[template-not-found-html]
_update_hash_filename_ = templates/notfound.html
......
......@@ -43,6 +43,7 @@ defaults
frontend http-frontend
bind {{ configuration['local-ipv4'] }}:{{ configuration['http-port'] }}
# Here use Host header
{%- for slave_instance in frontend_slave_list -%}
{{ frontend_entry(slave_instance, 'http', False) }}
{%- endfor %}
......@@ -52,6 +53,7 @@ frontend http-frontend
frontend https-frontend
bind {{ configuration['local-ipv4'] }}:{{ configuration['https-port'] }}
# Here use ssl_fc_sni and fallback to Host header
{%- for slave_instance in frontend_slave_list -%}
{{ frontend_entry(slave_instance, 'https', False) }}
{%- endfor %}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment