Skip to content

Commit

Permalink
Fix missing crt section
Browse files Browse the repository at this point in the history
c0e4489 removed the conditional check, but also removed the `ssl.cert` component which actually outputs the value

Causes an error when used
  • Loading branch information
wyaeld committed Jul 12, 2015
1 parent f77f246 commit 4b5061c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/etc/haproxy/frontend.cfg.j2
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ frontend {{ frontend.name }}
description {{ frontend.description }}
{% endif %}

bind {{ frontend.bind }}{% if frontend.ssl is defined %} ssl{% for ssl in frontend.ssl %} crt {% endfor %}{% endif %}
bind {{ frontend.bind }}{% if frontend.ssl is defined %} ssl{% for ssl in frontend.ssl %} crt {{ ssl.crt }}{% endfor %}{% endif %}

mode {{ frontend.mode }}

Expand Down

0 comments on commit 4b5061c

Please sign in to comment.