2020-07-16 15:20:07 +02:00
|
|
|
global
|
|
|
|
log stdout format raw local0 debug
|
|
|
|
|
|
|
|
defaults
|
|
|
|
option http-use-htx
|
|
|
|
timeout connect 10s
|
|
|
|
timeout client 10s
|
|
|
|
timeout client-fin 10s
|
|
|
|
timeout server 10s
|
|
|
|
timeout server-fin 10s
|
|
|
|
timeout check 10s
|
|
|
|
timeout tunnel 10s
|
|
|
|
log global
|
|
|
|
option httplog
|
|
|
|
|
|
|
|
frontend https
|
2020-02-13 10:01:33 +01:00
|
|
|
mode http
|
2020-07-16 15:20:07 +02:00
|
|
|
bind *:8000 ssl crt /usr/local/etc/haproxy/combined.pem alpn h2,http/1.1
|
2020-06-10 13:58:26 +02:00
|
|
|
default_backend backend_client # this is defined in the dev-*/prod-* file
|
2020-02-13 10:01:33 +01:00
|
|
|
|
2020-06-10 13:58:26 +02:00
|
|
|
acl action path_beg -i /system/action
|
|
|
|
use_backend backend_action if action
|
2020-02-13 10:01:33 +01:00
|
|
|
|
2020-06-10 13:58:26 +02:00
|
|
|
acl presenter path_beg -i /system/presenter
|
|
|
|
use_backend backend_presenter if presenter
|
|
|
|
|
|
|
|
acl autoupdate path_beg -i /system/autoupdate
|
|
|
|
use_backend backend_autoupdate if autoupdate
|
2020-02-13 10:01:33 +01:00
|
|
|
|
2020-07-14 10:45:27 +02:00
|
|
|
acl auth path_beg -i /system/auth
|
|
|
|
use_backend backend_auth if auth
|
|
|
|
|
2020-02-13 10:01:33 +01:00
|
|
|
stats enable
|
|
|
|
stats uri /stats
|
|
|
|
stats refresh 10s
|
|
|
|
stats auth admin:admin
|
|
|
|
|
|
|
|
resolvers docker_resolver
|
|
|
|
nameserver dns 127.0.0.11:53
|
|
|
|
|
2020-06-10 13:58:26 +02:00
|
|
|
backend backend_action
|
|
|
|
mode http
|
|
|
|
server action backend:9002 resolvers docker_resolver check
|
2020-02-13 10:01:33 +01:00
|
|
|
|
2020-06-10 13:58:26 +02:00
|
|
|
backend backend_presenter
|
|
|
|
mode http
|
|
|
|
server presenter backend:9003 resolvers docker_resolver check
|
2020-02-13 10:01:33 +01:00
|
|
|
|
2020-06-10 13:58:26 +02:00
|
|
|
backend backend_autoupdate
|
|
|
|
mode http
|
2020-07-16 15:20:07 +02:00
|
|
|
timeout server 1h
|
|
|
|
server autoupdate autoupdate:9012 resolvers docker_resolver check ssl verify none alpn h2
|
2020-07-14 10:45:27 +02:00
|
|
|
|
|
|
|
backend backend_auth
|
|
|
|
mode http
|
2020-07-16 15:20:07 +02:00
|
|
|
server auth auth:9004 resolvers docker_resolver check
|