2019-12-08 16:47:28 +00:00
|
|
|
global
|
2020-01-26 18:17:55 +00:00
|
|
|
log /dev/log local0
|
|
|
|
log /dev/log local1 notice
|
2020-05-09 20:08:27 +01:00
|
|
|
pidfile /run/haproxy.pid
|
2020-01-26 18:17:55 +00:00
|
|
|
stats timeout 30s
|
|
|
|
user haproxy
|
|
|
|
group haproxy
|
|
|
|
daemon
|
|
|
|
maxconn 10000
|
2019-12-08 16:47:28 +00:00
|
|
|
|
|
|
|
defaults
|
2020-01-26 18:17:55 +00:00
|
|
|
log global
|
|
|
|
mode http
|
|
|
|
option httplog
|
|
|
|
option dontlognull
|
2019-12-08 16:47:28 +00:00
|
|
|
|
|
|
|
listen https
|
2020-01-26 18:17:55 +00:00
|
|
|
bind *:443
|
|
|
|
mode tcp
|
2020-04-17 23:04:20 +01:00
|
|
|
timeout http-request 10m
|
|
|
|
timeout connect 10m
|
|
|
|
timeout client 10m
|
|
|
|
timeout server 10m
|
2021-01-09 18:17:54 +00:00
|
|
|
server default {{ wireguard.clients.ingress.ip }}:8443 send-proxy
|
2019-12-08 16:47:28 +00:00
|
|
|
|
|
|
|
listen http
|
2020-01-26 18:17:55 +00:00
|
|
|
bind *:80
|
|
|
|
stats enable
|
|
|
|
stats show-node
|
|
|
|
stats uri /haproxy
|
|
|
|
stats auth stats:{{ haproxy.stats_pass }}
|
2020-04-17 23:04:20 +01:00
|
|
|
timeout http-request 10m
|
|
|
|
timeout connect 10m
|
|
|
|
timeout client 10m
|
|
|
|
timeout server 10m
|
2021-06-12 17:04:21 +01:00
|
|
|
server default {{ wireguard.clients.ingress.ip }}:880 send-proxy
|
2019-12-08 16:47:28 +00:00
|
|
|
|
2021-06-12 16:47:51 +01:00
|
|
|
listen matrix
|
|
|
|
bind *:8448
|
2020-01-26 18:17:55 +00:00
|
|
|
mode tcp
|
2021-06-12 16:47:51 +01:00
|
|
|
server default {{ wireguard.clients.ingress.ip }}:8443 send-proxy
|