Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions templates/etc/haproxy/haproxy-backend.cfg.j2
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,11 @@ backend {{ name }}
option {{ opt }}
{% endfor %}
{% endif %}
{% if value.no_options is defined %}
{% for no_opt in value.no_options %}
no option {{ no_opt }}
{% endfor %}
{% endif %}
{% if value.time_outs is defined %}
{% for timeout in value.time_outs %}
timeout {{ timeout }}
Expand Down
5 changes: 5 additions & 0 deletions templates/etc/haproxy/haproxy-frontend.cfg.j2
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,11 @@ frontend {{ name }}
option {{ opt }}
{% endfor %}
{% endif %}
{% if value.no_options is defined %}
{% for no_opt in value.no_options %}
no option {{ no_opt }}
{% endfor %}
{% endif %}
{% if value.acls is defined %}
{% for acl in value.acls %}
acl {{ acl }}
Expand Down
5 changes: 5 additions & 0 deletions templates/etc/haproxy/haproxy-listen.cfg.j2
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,11 @@ listen {{ name }}
option {{ opt }}
{% endfor %}
{% endif %}
{% if value.no_options is defined %}
{% for no_opt in value.no_options %}
no option {{ no_opt }}
{% endfor %}
{% endif %}
{% if value.timeouts is defined %}
{% for timeout in value.timeouts %}
timeout {{ timeout }}
Expand Down