Skip to content
Snippets Groups Projects
Verified Commit 75b95a41 authored by Tilman Vatteroth's avatar Tilman Vatteroth :robot:
Browse files

adds acl to defaults

parent 279e0e9e
No related branches found
No related tags found
No related merge requests found
...@@ -64,6 +64,12 @@ defaults ...@@ -64,6 +64,12 @@ defaults
{{ macros.compression(haproxy_defaults_final.compression) }} {{ macros.compression(haproxy_defaults_final.compression) }}
{% endif -%} {% endif -%}
{% if haproxy_defaults_final.acl is defined %}
{% for acl in haproxy_defaults_final.acl %}
acl {{ acl.name }} {{ acl.condition }}
{% endfor -%}
{% endif -%}
{% if haproxy_defaults_final.http_check is defined %} {% if haproxy_defaults_final.http_check is defined %}
{% if haproxy_defaults_final.http_check.disable_on_404 is defined and haproxy_defaults_final.http_check.disable_on_404 == true %} {% if haproxy_defaults_final.http_check.disable_on_404 is defined and haproxy_defaults_final.http_check.disable_on_404 == true %}
http-check disable-on-404 http-check disable-on-404
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment