58 lines
2 KiB
Text
58 lines
2 KiB
Text
|
global
|
||
|
log /dev/log local0
|
||
|
log /dev/log local1 notice
|
||
|
chroot /var/lib/haproxy
|
||
|
stats socket /run/haproxy/admin.sock mode 660 level admin expose-fd listeners
|
||
|
stats timeout 30s
|
||
|
user haproxy
|
||
|
group haproxy
|
||
|
daemon
|
||
|
|
||
|
# Default SSL material locations
|
||
|
ca-base /etc/ssl/certs
|
||
|
crt-base /etc/ssl/private
|
||
|
ssl-default-bind-ciphersuites TLS_AES_128_GCM_SHA256:TLS_AES_256_GCM_SHA384:TLS_CHACHA20_POLY1305_SHA256
|
||
|
ssl-default-bind-options prefer-client-ciphers no-sslv3 no-tlsv10 no-tlsv11 no-tlsv12 no-tls-tickets
|
||
|
ssl-default-server-ciphersuites TLS_AES_128_GCM_SHA256:TLS_AES_256_GCM_SHA384:TLS_CHACHA20_POLY1305_SHA256
|
||
|
ssl-default-server-options no-sslv3 no-tlsv10 no-tlsv11 no-tlsv12 no-tls-tickets
|
||
|
|
||
|
defaults
|
||
|
log global
|
||
|
mode http
|
||
|
option httplog
|
||
|
option dontlognull
|
||
|
timeout connect 5000
|
||
|
timeout client 50000
|
||
|
timeout server 50000
|
||
|
errorfile 400 /etc/haproxy/errors/400.http
|
||
|
errorfile 403 /etc/haproxy/errors/403.http
|
||
|
errorfile 408 /etc/haproxy/errors/408.http
|
||
|
errorfile 500 /etc/haproxy/errors/500.http
|
||
|
errorfile 502 /etc/haproxy/errors/502.http
|
||
|
errorfile 503 /etc/haproxy/errors/503.http
|
||
|
errorfile 504 /etc/haproxy/errors/504.http
|
||
|
|
||
|
frontend fe_default
|
||
|
mode http
|
||
|
bind :443 ssl crt /etc/haproxy/certs/ alpn h2,http/1.1
|
||
|
bind :80
|
||
|
redirect scheme https code 301 if !{ ssl_fc }
|
||
|
http-response set-header Strict-Transport-Security max-age=63072000
|
||
|
{% for domain in haproxy_domains %}
|
||
|
acl host_{{ domain.name }} hdr(host) -i {{ domain.url }}
|
||
|
{% endfor %}
|
||
|
{% for domain in haproxy_domains %}
|
||
|
use_backend be_{{ domain.name }} if host_{{ domain.name }}
|
||
|
{% endfor %}
|
||
|
|
||
|
{% for domain in haproxy_domains %}
|
||
|
backend be_{{ domain.name }}
|
||
|
balance leastconn
|
||
|
server-template {{ domain.name }} 1 _{{ domain.name }}._tcp.service.masked.name resolvers consul resolve-opts allow-dup-ip resolve-prefer ipv4 check
|
||
|
|
||
|
{% endfor %}
|
||
|
resolvers consul
|
||
|
nameserver consul 127.0.0.1:8600
|
||
|
accepted_payload_size 8192
|
||
|
hold valid 5s
|