diff options
author | Andrew Morgan <andrew@amorgan.xyz> | 2019-04-01 15:18:32 +0100 |
---|---|---|
committer | Andrew Morgan <andrew@amorgan.xyz> | 2019-04-01 15:18:32 +0100 |
commit | d95b4efb24ada82b2ab3f46a4b12d87ba1b201f4 (patch) | |
tree | a65b8ff3b08f999563779a8d950b289fc30dcac2 /docs | |
parent | Generate config and remove extra newline (diff) | |
download | synapse-d95b4efb24ada82b2ab3f46a4b12d87ba1b201f4.tar.xz |
No tls.
Diffstat (limited to 'docs')
-rw-r--r-- | docs/MSC1711_certificates_FAQ.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/MSC1711_certificates_FAQ.md b/docs/MSC1711_certificates_FAQ.md index 2f94946951..84bc580931 100644 --- a/docs/MSC1711_certificates_FAQ.md +++ b/docs/MSC1711_certificates_FAQ.md @@ -186,14 +186,14 @@ federation endpoints; other requests made to recaptcha, identity services etc. will be unaffected. ``` -tls.federation_verify_certificates = false +federation_verify_certificates = false ``` You can also only disable certificate validation for a specific set of homeservers: ``` -tls.federation_certificate_verification_whitelist: +federation_certificate_verification_whitelist: - subdomain.my-server.org - example.org - 1.2.3.4 @@ -206,7 +206,7 @@ Authorities, you can do so with the following option. **Note that this list will replace any certificates provided by your operating environment.** ``` -tls.federation_custom_ca_list: +federation_custom_ca_list: - myCA1.pem - myCA2.pem ``` |