diff options
Diffstat (limited to 'data')
-rw-r--r-- | data/default_config.cfg | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/data/default_config.cfg b/data/default_config.cfg index ac2e245e..5232eb06 100644 --- a/data/default_config.cfg +++ b/data/default_config.cfg @@ -14,11 +14,18 @@ port = 5222 # Do not touch this if you don’t know what you are doing certificate = -# Skip the SSL verification +# Skip the SSL certificate fingerprint verification # Should be true in most cases, as you want to check that the server keeps # the same certificate. ignore_certificate = false +# Path to the certificate authenticating the Authority +# A server may have several certificates, but if it uses a CA, it will often +# keep the same for obvious reasons, so this is a good option if your server +# does this, rather than skipping all verifications. +# This is not affected by ignore_certificate +ca_cert_path = + # Auto-reconnects you when you get disconnected from the server # defaults to false because it should not be necessary auto_reconnect = false |