diff options
author | Andrew Morgan <1342360+anoadragon453@users.noreply.github.com> | 2019-03-13 15:26:29 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-13 15:26:29 +0000 |
commit | 7998ca3a6616653fe8b76da3d7fd3c91d0d9597e (patch) | |
tree | d02ffdd21d7be9c6eea5dc88146ffc22f9d8e713 /synapse/config/tls.py | |
parent | Merge branch 'master' of github.com:matrix-org/synapse into develop (diff) | |
download | synapse-7998ca3a6616653fe8b76da3d7fd3c91d0d9597e.tar.xz |
Document using a certificate with a full chain (#4849)
Diffstat (limited to 'synapse/config/tls.py')
-rw-r--r-- | synapse/config/tls.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/synapse/config/tls.py b/synapse/config/tls.py index 40045de7ac..f0014902da 100644 --- a/synapse/config/tls.py +++ b/synapse/config/tls.py @@ -181,6 +181,11 @@ class TlsConfig(Config): # See 'ACME support' below to enable auto-provisioning this certificate via # Let's Encrypt. # + # If supplying your own, be sure to use a `.pem` file that includes the + # full certificate chain including any intermediate certificates (for + # instance, if using certbot, use `fullchain.pem` as your certificate, + # not `cert.pem`). + # #tls_certificate_path: "%(tls_certificate_path)s" # PEM-encoded private key for TLS |