summary refs log tree commit diff
path: root/docker/conf/homeserver.yaml
diff options
context:
space:
mode:
authorErik Johnston <erikj@jki.re>2019-02-12 10:00:38 +0000
committerGitHub <noreply@github.com>2019-02-12 10:00:38 +0000
commit46b8a79b3a418ad6795e903588d1f8e12f547e2c (patch)
tree5c96d48c07e496aec8f2b6101d711214f0087efa /docker/conf/homeserver.yaml
parentMerge pull request #4613 from matrix-org/rav/deprecate_no_tls (diff)
parentRemove redundant entries from docker config (diff)
downloadsynapse-46b8a79b3a418ad6795e903588d1f8e12f547e2c.tar.xz
Merge pull request #4619 from matrix-org/rav/remove_docker_no_tls_hacks
Remove redundant entries from docker config
Diffstat (limited to 'docker/conf/homeserver.yaml')
-rw-r--r--docker/conf/homeserver.yaml8
1 files changed, 1 insertions, 7 deletions
diff --git a/docker/conf/homeserver.yaml b/docker/conf/homeserver.yaml
index f07d5c1001..babd5bef9e 100644
--- a/docker/conf/homeserver.yaml
+++ b/docker/conf/homeserver.yaml
@@ -2,13 +2,7 @@
 
 ## TLS ##
 
-{% if SYNAPSE_NO_TLS %}
-no_tls: True
-
-# workaround for https://github.com/matrix-org/synapse/issues/4554
-tls_certificate_path: "/conf/dummy.tls.crt"
-
-{% else %}
+{% if not SYNAPSE_NO_TLS %}
 
 tls_certificate_path: "/data/{{ SYNAPSE_SERVER_NAME }}.tls.crt"
 tls_private_key_path: "/data/{{ SYNAPSE_SERVER_NAME }}.tls.key"