Merge pull request #4089 from dekonnection/master

Make Docker image listen on ipv6 as well as ipv4
pull/4106/head
Richard van der Hoff 2018-10-25 19:23:37 +01:00 committed by GitHub
commit 6cb2e2448a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

1
changelog.d/4089.feature Normal file
View File

@ -0,0 +1 @@
Configure Docker image to listen on both ipv4 and ipv6.

View File

@ -21,7 +21,7 @@ listeners:
{% if not SYNAPSE_NO_TLS %}
-
port: 8448
bind_addresses: ['0.0.0.0']
bind_addresses: ['::']
type: http
tls: true
x_forwarded: false
@ -34,7 +34,7 @@ listeners:
- port: 8008
tls: false
bind_addresses: ['0.0.0.0']
bind_addresses: ['::']
type: http
x_forwarded: false