From 63c6795ad2566de351d9591dd498298925a5b0a6 Mon Sep 17 00:00:00 2001
From: reivilibre
dbid
: Optional redis dbid if needs to connect to specific redis logical db.
use_tls
: Whether to use tls connection. Defaults to false.
certificate_file
: Optional path to the certificate file
private_key_file
: Optional path to the private key file
ca_file
: Optional path to the CA certificate file. Use this one or:
ca_path
: Optional path to the folder containing the CA certificate file
Added in Synapse 1.78.0.
+Changed in Synapse 1.84.0: Added use_tls, certificate_file, private_key_file, ca_file and ca_path attributes
Example configuration:
@@ -3566,6 +3582,10 @@ localhost and 6379 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>