Added doc for ignore_certificate and certificate options
This commit is contained in:
parent
fb9d11cc79
commit
497e9fc685
2 changed files with 20 additions and 0 deletions
|
@ -10,6 +10,15 @@ server = anon.louiz.org
|
||||||
# the port you'll use to connect
|
# the port you'll use to connect
|
||||||
port = 5222
|
port = 5222
|
||||||
|
|
||||||
|
# SSL Certificate fingerprint
|
||||||
|
# Do not touch this if you don’t know what you are doing
|
||||||
|
certificate =
|
||||||
|
|
||||||
|
# Skip the SSL verification
|
||||||
|
# Should be true in most cases, as you want to check that the server keeps
|
||||||
|
# the same certificate.
|
||||||
|
ignore_certificate = false
|
||||||
|
|
||||||
# Auto-reconnects you when you get disconnected from the server
|
# Auto-reconnects you when you get disconnected from the server
|
||||||
# defaults to false because it should not be necessary
|
# defaults to false because it should not be necessary
|
||||||
auto_reconnect = false
|
auto_reconnect = false
|
||||||
|
|
|
@ -48,6 +48,17 @@ section of this documentation.
|
||||||
|
|
||||||
The port you’ll use to connect.
|
The port you’ll use to connect.
|
||||||
|
|
||||||
|
*certificate*:: [empty]
|
||||||
|
|
||||||
|
The fingerprint of the SSL certificate as a hexadecimal string, you should
|
||||||
|
not touch it, except if know what you are doing.
|
||||||
|
|
||||||
|
*ignore_certificate*:: false
|
||||||
|
|
||||||
|
Skip certificate validation on connection when _true_. Useful when you are in
|
||||||
|
anonymous mode and changing servers often. Dangerous in other cases, from a
|
||||||
|
security perspective.
|
||||||
|
|
||||||
*resource*:: [empty]
|
*resource*:: [empty]
|
||||||
|
|
||||||
the resource you will use
|
the resource you will use
|
||||||
|
|
Loading…
Reference in a new issue