diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2018-10-25 19:23:37 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-25 19:23:37 +0100 |
commit | 6cb2e2448ab216ed3c00e2347a8ce5e9a383a552 (patch) | |
tree | b0aad55653efc97c7d99fcf445da15389d2aa53a | |
parent | Refactor state group lookup to reduce DB hits (#4011) (diff) | |
parent | Make Docker image listening on ipv6 as well as ipv4 (diff) | |
download | synapse-6cb2e2448ab216ed3c00e2347a8ce5e9a383a552.tar.xz |
Merge pull request #4089 from dekonnection/master
Make Docker image listen on ipv6 as well as ipv4
-rw-r--r-- | changelog.d/4089.feature | 1 | ||||
-rw-r--r-- | docker/conf/homeserver.yaml | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/changelog.d/4089.feature b/changelog.d/4089.feature new file mode 100644 index 0000000000..62c9d839bb --- /dev/null +++ b/changelog.d/4089.feature @@ -0,0 +1 @@ + Configure Docker image to listen on both ipv4 and ipv6. diff --git a/docker/conf/homeserver.yaml b/docker/conf/homeserver.yaml index a38b929f50..1b0f655d26 100644 --- a/docker/conf/homeserver.yaml +++ b/docker/conf/homeserver.yaml @@ -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 |