Merge pull request #67 from KerkhoffTechnologies/frontend_add_timeouts
Add timeouts handling to frontend section of template
This commit is contained in:
commit
1c29ef813d
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