This commit is contained in:
parent
1a6d0f8b58
commit
43d68bc19b
@ -296,6 +296,7 @@ frontend fe_https from {{ haproxy.config.namespace }}
|
||||
|
||||
|
||||
# HTTP Backends
|
||||
{%- if haproxy.config.vhosts %}
|
||||
{%- for name, values in haproxy.config.vhosts.items() %}
|
||||
{%- if not values.redirect|default(False) %}
|
||||
backend {{ name }} from {{ haproxy.config.namespace }}
|
||||
@ -308,6 +309,7 @@ backend {{ name }} from {{ haproxy.config.namespace }}
|
||||
http-check {{ step }}
|
||||
{%- endfor %}
|
||||
{%- endif %}
|
||||
{%- endif %}
|
||||
|
||||
{%- if values.usecache|default(True) %}
|
||||
{{ cache() }}
|
||||
@ -336,6 +338,7 @@ backend {{ name }} from {{ haproxy.config.namespace }}
|
||||
{% endfor %}
|
||||
|
||||
# TCP services
|
||||
{%- if haproxy.config.services %}
|
||||
{%- for name, values in haproxy.config.services.items() %}
|
||||
listen {{ name }} from {{ haproxy.config.namespace }}
|
||||
bind *:{{ values.port }},:::{{ values.port }} v4v6 name {{ name }}
|
||||
@ -355,6 +358,7 @@ listen {{ name }} from {{ haproxy.config.namespace }}
|
||||
default-server maxconn 100 weight 100 inter 1s fall 5
|
||||
{{- tcpendpoints(servers=values.servers|default([]), check=values.check|default(haproxy.config.check)) }}
|
||||
{% endfor %}
|
||||
{%- endif %}
|
||||
|
||||
# SPOE Agents
|
||||
{%- for name, values in haproxy.config.spoe.items() %}
|
||||
|
Loading…
Reference in New Issue
Block a user