Update gateway to point to ingress instance
This commit is contained in:
parent
fef7f2c2b4
commit
c38ecfebd7
1 changed files with 3 additions and 3 deletions
|
@ -21,7 +21,7 @@ listen https
|
||||||
timeout connect 10m
|
timeout connect 10m
|
||||||
timeout client 10m
|
timeout client 10m
|
||||||
timeout server 10m
|
timeout server 10m
|
||||||
server default {{ wireguard.clients.intersect.ip }}:443 send-proxy
|
server default {{ wireguard.clients.ingress.ip }}:8443 send-proxy
|
||||||
|
|
||||||
listen http
|
listen http
|
||||||
bind *:80
|
bind *:80
|
||||||
|
@ -33,13 +33,13 @@ listen http
|
||||||
timeout connect 10m
|
timeout connect 10m
|
||||||
timeout client 10m
|
timeout client 10m
|
||||||
timeout server 10m
|
timeout server 10m
|
||||||
server default {{ wireguard.clients.intersect.ip }}:80 check
|
server default {{ wireguard.clients.ingress.ip }}:880 check
|
||||||
|
|
||||||
{% for port in haproxy.exposed_ports %}
|
{% for port in haproxy.exposed_ports %}
|
||||||
|
|
||||||
listen expose_{{ port }}
|
listen expose_{{ port }}
|
||||||
bind *:{{ port }}
|
bind *:{{ port }}
|
||||||
mode tcp
|
mode tcp
|
||||||
server default {{ wireguard.clients.intersect.ip }}:{{ port }}
|
server default {{ wireguard.clients.ingress.ip }}:{{ port }}
|
||||||
|
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
Loading…
Reference in a new issue