Make LDAP CA cert file a variable.

This commit is contained in:
Markus 2016-03-03 08:14:43 +01:00
parent 4f5558528e
commit 1cdb5750dc
3 changed files with 4 additions and 3 deletions

View File

@ -1,5 +1,6 @@
---
ldap_ca: /etc/ssl/BKCA.crt
ldap_uri: ldaps://ldap.binary.kitchen/
ldap_host: ldap.binary.kitchen
ldap_base: dc=binary-kitchen,dc=de

View File

@ -32,4 +32,4 @@ base shadow {{ nslcd_base_shadow }}
# SSL options
tls_reqcert demand
tls_cacertfile /etc/ssl/BKCA.crt
tls_cacertfile {{ ldap_ca }}

View File

@ -45,14 +45,14 @@ dnpass = {{ ldap_bindpw }}
# Use TLS to connect to the LDAP server.
tls = yes
# TLS options, currently supported only with OpenLDAP:
#tls_ca_cert_file = TODO
tls_ca_cert_file = {{ ldap_ca }}
#tls_ca_cert_dir =
#tls_cipher_suite =
# TLS cert/key is used only if LDAP server requires a client certificate.
#tls_cert_file =
#tls_key_file =
# Valid values: never, hard, demand, allow, try
#tls_require_cert = TODO
tls_require_cert = demand
# Use the given ldaprc path.
#ldaprc_path =