diff --git a/haproxy/templates/haproxy.jinja b/haproxy/templates/haproxy.jinja index 752550b..783dec9 100644 --- a/haproxy/templates/haproxy.jinja +++ b/haproxy/templates/haproxy.jinja @@ -374,6 +374,11 @@ frontend {{ frontend.get('name', frontend_name) }} {%- if 'maxconn' in frontend %} maxconn {{ frontend.maxconn }} {%- endif %} + {%- if 'timeouts' in frontend %} + {%- for timeout in frontend.timeouts %} + timeout {{ timeout }} + {%- endfor %} + {%- endif %} {%- if 'options' in frontend %} {{- render_list_of_dictionaries('option', frontend.options) }} {%- endif %}