mirror of
https://github.com/matrix-org/synapse.git
synced 2025-01-14 12:16:47 +00:00
Make Docker image listening on ipv6 as well as ipv4
Signed-off-by: Cédric Laudrel <dek@iono.me>
This commit is contained in:
parent
047ac0cbba
commit
379376e5e6
1
changelog.d/4089.feature
Normal file
1
changelog.d/4089.feature
Normal file
@ -0,0 +1 @@
|
|||||||
|
Configure Docker image to listen on both ipv4 and ipv6.
|
@ -21,7 +21,7 @@ listeners:
|
|||||||
{% if not SYNAPSE_NO_TLS %}
|
{% if not SYNAPSE_NO_TLS %}
|
||||||
-
|
-
|
||||||
port: 8448
|
port: 8448
|
||||||
bind_addresses: ['0.0.0.0']
|
bind_addresses: ['::']
|
||||||
type: http
|
type: http
|
||||||
tls: true
|
tls: true
|
||||||
x_forwarded: false
|
x_forwarded: false
|
||||||
@ -34,7 +34,7 @@ listeners:
|
|||||||
|
|
||||||
- port: 8008
|
- port: 8008
|
||||||
tls: false
|
tls: false
|
||||||
bind_addresses: ['0.0.0.0']
|
bind_addresses: ['::']
|
||||||
type: http
|
type: http
|
||||||
x_forwarded: false
|
x_forwarded: false
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user