Skip to content

Commit 0683881

Browse files
rabbitmq.conf.example: cover client-side TLS settings for LDAP
Part of rabbitmq/rabbitmq-website#1776 (cherry picked from commit 934337e)
1 parent 4ed7ea5 commit 0683881

File tree

1 file changed

+34
-1
lines changed

1 file changed

+34
-1
lines changed

deps/rabbit/docs/rabbitmq.conf.example

Lines changed: 34 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1016,7 +1016,7 @@
10161016
##
10171017
# auth_ldap.timeout = infinity
10181018

1019-
## Or number
1019+
## Or a number
10201020
# auth_ldap.timeout = 500
10211021

10221022
## Enable logging of LDAP queries.
@@ -1033,6 +1033,39 @@
10331033
# auth_ldap.log = true
10341034
# auth_ldap.log = network
10351035

1036+
## Client TLS settings for LDAP connections
1037+
##
1038+
1039+
## enables TLS for connections to the LDAP server
1040+
# auth_ldap.use_ssl = true
1041+
1042+
## local filesystem path to a CA certificate bundle file
1043+
# auth_ldap.ssl_options.cacertfile = /path/to/ca_certificate.pem
1044+
1045+
## local filesystem path to a client certificate file
1046+
# auth_ldap.ssl_options.certfile = /path/to/client_certfile.pem
1047+
1048+
## local filesystem path to a client private key file
1049+
# auth_ldap.ssl_options.keyfile = /path/to/client_key.pem
1050+
1051+
## Sets Server Name Indication for LDAP connections.
1052+
## If an LDAP server host is availble via multiple domain names, set this value
1053+
## to the preferred domain name target LDAP server
1054+
# auth_ldap.ssl_options.sni = ldap.identity.eng.megacorp.local
1055+
1056+
## take wildcards into account when performing hostname verification
1057+
# auth_ldap.ssl_options.hostname_verification = wildcard
1058+
1059+
## enables peer certificate chain verification
1060+
# auth_ldap.ssl_options.verify = verify_peer
1061+
1062+
## disables peer certificate chain verification
1063+
# auth_ldap.ssl_options.verify = verify_none
1064+
1065+
## if target LDAP server does not present a certificate, should the connection be aborted?
1066+
# auth_ldap.ssl_options.fail_if_no_peer_cert = true
1067+
1068+
10361069
##
10371070
## Authentication
10381071
## ==============

0 commit comments

Comments
 (0)