diff options
author | reivilibre <reivilibre@users.noreply.github.com> | 2023-05-11 12:03:45 +0000 |
---|---|---|
committer | reivilibre <reivilibre@users.noreply.github.com> | 2023-05-11 12:03:45 +0000 |
commit | 63c6795ad2566de351d9591dd498298925a5b0a6 (patch) | |
tree | 1d7a03a4447d5173bdea44bc99d3dc1ecc7a448f /develop/print.html | |
parent | deploy: e4f545c452df817daa2f22dfda906f3451d98351 (diff) | |
download | synapse-63c6795ad2566de351d9591dd498298925a5b0a6.tar.xz |
deploy: 2611433b70fc30c436f6b9b950a3bcc533b3df5b
Diffstat (limited to 'develop/print.html')
-rw-r--r-- | develop/print.html | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/develop/print.html b/develop/print.html index 8a0b1005a6..292e4c58fc 100644 --- a/develop/print.html +++ b/develop/print.html @@ -7044,7 +7044,23 @@ localhost and 6379</p> </li> <li> <p><code>dbid</code>: Optional redis dbid if needs to connect to specific redis logical db.</p> +</li> +<li> +<p><code>use_tls</code>: Whether to use tls connection. Defaults to false.</p> +</li> +<li> +<p><code>certificate_file</code>: Optional path to the certificate file</p> +</li> +<li> +<p><code>private_key_file</code>: Optional path to the private key file</p> +</li> +<li> +<p><code>ca_file</code>: Optional path to the CA certificate file. Use this one or:</p> +</li> +<li> +<p><code>ca_path</code>: Optional path to the folder containing the CA certificate file</p> <p><em>Added in Synapse 1.78.0.</em></p> +<p><em>Changed in Synapse 1.84.0: Added use_tls, certificate_file, private_key_file, ca_file and ca_path attributes</em></p> </li> </ul> <p>Example configuration:</p> @@ -7054,6 +7070,10 @@ localhost and 6379</p> port: 6379 password: <secret_password> dbid: <dbid> + #use_tls: True + #certificate_file: <path_to_the_certificate_file> + #private_key_file: <path_to_the_private_key_file> + #ca_file: <path_to_the_ca_certificate_file> </code></pre> <hr /> <h2 id="individual-worker-configuration"><a class="header" href="#individual-worker-configuration">Individual worker configuration</a></h2> |