Skip to content

Commit

Permalink
Merge pull request #2619 from kulikov-a/patch-2
Browse files Browse the repository at this point in the history
net / haproxy quick fix
  • Loading branch information
fraenki authored Oct 28, 2021
2 parents 5374a0d + 18cd9f6 commit b1953fc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@
{% if acl_data.caseSensitive|default('0') == '0' %}
{% do acl_options.append('-i') %}
{% endif %}
{% do acl_options.append('acl_data.hdr_sub) %}
{% do acl_options.append(acl_data.hdr_sub) %}
{% else %}
{% set acl_enabled = '0' %}
# ERROR: missing parameters
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ frontends:
{{ cert_refid }}:
path: {{ cert_template % cert_refid }}
default: {{ "True" if frontend.ssl_default_certificate == cert_refid else "False" }}
{{ getCert(cert_refid) | indent( width=8, indentfirst=True) -}}
{{ getCert(cert_refid) | indent( width=8, first=True) -}}
{% endfor %}
{% endfor %}
{% else %}
Expand Down

0 comments on commit b1953fc

Please sign in to comment.