Skip to content

Commit a520090

Browse files
rabbitmq.conf.example: cover client-side TLS settings for LDAP
Part of rabbitmq/rabbitmq-website#1776
1 parent f28f28f commit a520090

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
@@ -1037,7 +1037,7 @@
10371037
##
10381038
# auth_ldap.timeout = infinity
10391039

1040-
## Or number
1040+
## Or a number
10411041
# auth_ldap.timeout = 500
10421042

10431043
## Enable logging of LDAP queries.
@@ -1054,6 +1054,39 @@
10541054
# auth_ldap.log = true
10551055
# auth_ldap.log = network
10561056

1057+
## Client TLS settings for LDAP connections
1058+
##
1059+
1060+
## enables TLS for connections to the LDAP server
1061+
# auth_ldap.use_ssl = true
1062+
1063+
## local filesystem path to a CA certificate bundle file
1064+
# auth_ldap.ssl_options.cacertfile = /path/to/ca_certificate.pem
1065+
1066+
## local filesystem path to a client certificate file
1067+
# auth_ldap.ssl_options.certfile = /path/to/client_certfile.pem
1068+
1069+
## local filesystem path to a client private key file
1070+
# auth_ldap.ssl_options.keyfile = /path/to/client_key.pem
1071+
1072+
## Sets Server Name Indication for LDAP connections.
1073+
## If an LDAP server host is availble via multiple domain names, set this value
1074+
## to the preferred domain name target LDAP server
1075+
# auth_ldap.ssl_options.sni = ldap.identity.eng.megacorp.local
1076+
1077+
## take wildcards into account when performing hostname verification
1078+
# auth_ldap.ssl_options.hostname_verification = wildcard
1079+
1080+
## enables peer certificate chain verification
1081+
# auth_ldap.ssl_options.verify = verify_peer
1082+
1083+
## disables peer certificate chain verification
1084+
# auth_ldap.ssl_options.verify = verify_none
1085+
1086+
## if target LDAP server does not present a certificate, should the connection be aborted?
1087+
# auth_ldap.ssl_options.fail_if_no_peer_cert = true
1088+
1089+
10571090
##
10581091
## Authentication
10591092
## ==============

0 commit comments

Comments
 (0)