{% for http_request in frontend.http_request | default([]) %}
http-request {{ http_request.action }}{% if http_request.param is defined %} {{ http_request.param }}{% endif %}{% if http_request.cond is defined %} {{ http_request.cond }}{% endif %}
{% endfor %}
{% for http_response in frontend.http_response | default([]) %}
http-response {{ http_response.action }}{% if http_response.param is defined %} {{ http_response.param }}{% endif %}{% if http_response.cond is defined %} {{ http_response.cond }}{% endif %}
{% endfor %}
{% for tcp_request_inspect_delay in frontend.tcp_request_inspect_delay | default([]) %}
{% for http_request in frontend.http_request | default([]) %}
http-request {{ http_request.action }}{% if http_request.param is defined %} {{ http_request.param }}{% endif %}{% if http_request.cond is defined %} {{ http_request.cond }}{% endif %}
{% endfor %}
{% for http_response in frontend.http_response | default([]) %}
http-response {{ http_response.action }}{% if http_response.param is defined %} {{ http_response.param }}{% endif %}{% if http_response.cond is defined %} {{ http_response.cond }}{% endif %}
{% endfor %}
{% for action in ['reqadd', 'rspadd'] %}
{% for params in frontend[action] | default([]) %}
{{ action }} {{ params.string }}{% if params.cond is defined %} {{ params.cond }}{% endif %}
{% for http_request in listen.http_request | default([]) %}
http-request {{ http_request.action }}{% if http_request.param is defined %} {{ http_request.param }}{% endif %}{% if http_request.cond is defined %} {{ http_request.cond }}{% endif %}
{% endfor %}
{% for tcp_request_inspect_delay in listen.tcp_request_inspect_delay | default([]) %}
{% for http_request in listen.http_request | default([]) %}
http-request {{ http_request.action }}{% if http_request.param is defined %} {{ http_request.param }}{% endif %}{% if http_request.cond is defined %} {{ http_request.cond }}{% endif %}
{% endfor %}
{% for http_response in listen.http_response | default([]) %}
http-response {{ http_response.action }}{% if http_response.param is defined %} {{ http_response.param }}{% endif %}{% if http_response.cond is defined %} {{ http_response.cond }}{% endif %}