Add timeouts handling to frontent. Was only in listen
This commit is contained in:
parent
d815b4615a
commit
2f2e0deca6
1 changed files with 5 additions and 0 deletions
|
@ -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 %}
|
||||
|
|
Loading…
Reference in a new issue