r/dch-proxy: Use separate sockets for IPv4/IPv6
When HAProxy binds to the IPv6 socket, it can handle both IPv6 and IPv4 clients. IPv4 clients are handled as IPv4-mapped IPv6 addresses, which some backends (i.e. Apache) cannot support. To avoid this, we configure HAProxy to bind to the IPv4 and IPv6 sockets separately, so that IPv4 addresses are handled as IPv4 addresses.frigate-exporter
parent
7f599e9058
commit
e4766e54ac
|
@ -16,7 +16,7 @@ frontend main
|
|||
use_backend kubernetes if internal_net
|
||||
|
||||
frontend main-tls
|
||||
bind :::443
|
||||
bind *:443,:::443 v6only
|
||||
mode tcp
|
||||
option tcplog
|
||||
|
||||
|
|
Loading…
Reference in New Issue