diff --git a/docker/conf/homeserver.yaml b/docker/conf/homeserver.yaml index babd5bef9e35..487fa1922035 100644 --- a/docker/conf/homeserver.yaml +++ b/docker/conf/homeserver.yaml @@ -2,7 +2,7 @@ ## TLS ## -{% if not SYNAPSE_NO_TLS %} +{% if not SYNAPSE_NO_TLS == '1' %} tls_certificate_path: "/data/{{ SYNAPSE_SERVER_NAME }}.tls.crt" tls_private_key_path: "/data/{{ SYNAPSE_SERVER_NAME }}.tls.key" @@ -26,7 +26,7 @@ log_config: "/compiled/log.config" ## Ports ## listeners: - {% if not SYNAPSE_NO_TLS %} + {% if not SYNAPSE_NO_TLS == '1' %} - port: 8448 bind_addresses: ['::']