matrix-synapse: allow lighttpd to listen on IPv6

This commit is contained in:
Timothée Floure 2021-07-31 15:58:20 +02:00
parent 7addca7a66
commit a741b568d7
No known key found for this signature in database
GPG key ID: 4502C902C00A1E12
2 changed files with 7 additions and 0 deletions

View file

@ -11,6 +11,9 @@ metadata:
data:
lighttpd.conf: |
server.port = 8080
{{ if .Values.wellknown.useIpv6}}
server.use-ipv6 = "enable"
{{ end }}
server.modules = (
"mod_rewrite",
"mod_status",

View file

@ -510,6 +510,10 @@ wellknown:
enabled: false
replicaCount: 1
# Lighttpd does not bind on IPv6 by default, although this is required in
# Ipv6-only clusters.
useIpv6: false
## The host and port combo to serve on .well-known/matrix/server.
##
server: {}