timeouts for listeners
This commit is contained in:
parent
186be19c27
commit
23dd429084
1 changed files with 5 additions and 0 deletions
|
@ -283,6 +283,11 @@ listen {{ listener.get('name', listener_name) }}
|
||||||
{%- if 'maxconn' in listener %}
|
{%- if 'maxconn' in listener %}
|
||||||
maxconn {{ listener.maxconn }}
|
maxconn {{ listener.maxconn }}
|
||||||
{%- endif %}
|
{%- endif %}
|
||||||
|
{%- if 'timeouts' in listener %}
|
||||||
|
{%- for timeout in listener.timeouts %}
|
||||||
|
timeout {{ timeout }}
|
||||||
|
{%- endfor %}
|
||||||
|
{%- endif %}
|
||||||
{%- if 'options' in listener %}
|
{%- if 'options' in listener %}
|
||||||
{%- if listener.options is string %}
|
{%- if listener.options is string %}
|
||||||
option {{ listener.options }}
|
option {{ listener.options }}
|
||||||
|
|
Loading…
Reference in a new issue