Merge branch 'master' into 'master'
matrix-synapse: allow lighttpd to listen on IPv6 See merge request ananace/charts!15
This commit is contained in:
commit
14cf8ac599
2 changed files with 7 additions and 0 deletions
|
@ -11,6 +11,9 @@ metadata:
|
||||||
data:
|
data:
|
||||||
lighttpd.conf: |
|
lighttpd.conf: |
|
||||||
server.port = 8080
|
server.port = 8080
|
||||||
|
{{ if .Values.wellknown.useIpv6}}
|
||||||
|
server.use-ipv6 = "enable"
|
||||||
|
{{ end }}
|
||||||
server.modules = (
|
server.modules = (
|
||||||
"mod_rewrite",
|
"mod_rewrite",
|
||||||
"mod_status",
|
"mod_status",
|
||||||
|
|
|
@ -510,6 +510,10 @@ wellknown:
|
||||||
enabled: false
|
enabled: false
|
||||||
replicaCount: 1
|
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.
|
## The host and port combo to serve on .well-known/matrix/server.
|
||||||
##
|
##
|
||||||
server: {}
|
server: {}
|
||||||
|
|
Loading…
Reference in a new issue