diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2019-02-05 13:42:21 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-05 13:42:21 +0000 |
commit | 40b35fb87516f461ae562b247ab13a80f57beede (patch) | |
tree | cf41011830764ee204f0670ed25c253e77ebc8a0 /docker/conf/homeserver.yaml | |
parent | Docker: only copy what we need to the build image (#4562) (diff) | |
download | synapse-40b35fb87516f461ae562b247ab13a80f57beede.tar.xz |
Enable ACME support in the docker image (#4566)
Also: * Fix wrapping in docker readme * Clean up some docs on the docker image * a workaround for #4554
Diffstat (limited to 'docker/conf/homeserver.yaml')
-rw-r--r-- | docker/conf/homeserver.yaml | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/docker/conf/homeserver.yaml b/docker/conf/homeserver.yaml index 529118d184..f07d5c1001 100644 --- a/docker/conf/homeserver.yaml +++ b/docker/conf/homeserver.yaml @@ -2,10 +2,24 @@ ## 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 %} + tls_certificate_path: "/data/{{ SYNAPSE_SERVER_NAME }}.tls.crt" tls_private_key_path: "/data/{{ SYNAPSE_SERVER_NAME }}.tls.key" -no_tls: {{ "True" if SYNAPSE_NO_TLS else "False" }} -tls_fingerprints: [] + +{% if SYNAPSE_ACME %} +acme: + enabled: true + port: 8009 +{% endif %} + +{% endif %} ## Server ## |