infrastructure/ansible/roles/gateway/files/haproxy.cfg

42 lines
824 B
INI
Raw Normal View History

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
timeout http-request 10m
timeout connect 10m
timeout client 10m
timeout server 10m
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 }}
timeout http-request 10m
timeout connect 10m
timeout client 10m
timeout server 10m
server default {{ wireguard.clients.ingress.ip }}:880 send-proxy
2019-12-08 16:47:28 +00:00
listen matrix
bind *:8448
2020-01-26 18:17:55 +00:00
mode tcp
server default {{ wireguard.clients.ingress.ip }}:8443 send-proxy