Merge branch 'master' into 'master'

matrix-synapse: allow lighttpd to listen on IPv6

See merge request ananace/charts!15
This commit is contained in:
Alexander Olofsson 2021-07-31 14:12:24 +00:00
commit 14cf8ac599
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: {}