Allow defining http response actions
diff --git a/haproxy/files/haproxy.cfg b/haproxy/files/haproxy.cfg
index 65da9c6..9bfdea2 100644
--- a/haproxy/files/haproxy.cfg
+++ b/haproxy/files/haproxy.cfg
@@ -141,6 +141,9 @@
{%- for http_request in listen.get('http_request', []) %}
http-request {{ http_request.action }}{% if http_request.condition is defined %} {{ http_request.condition }}{% endif %}
{%- endfor %}
+ {%- for http_response in listen.get('http_response', []) %}
+ http-response {{ http_response.action }}{% if http_response.condition is defined %} {{ http_response.condition }}{% endif %}
+ {%- endfor %}
{%- for option in listen.get('options', []) %}
option {{ option }}
{%- endfor %}