Skip to content
Snippets Groups Projects
Commit 6108584f authored by Chris Hines's avatar Chris Hines
Browse files

allow use of a ldap readonly server for failover (but don't mandate it)

Former-commit-id: 59d9297a
parent 950fe405
No related branches found
No related tags found
No related merge requests found
...@@ -22,7 +22,12 @@ auth_provider = ldap ...@@ -22,7 +22,12 @@ auth_provider = ldap
chpass_provider = ldap chpass_provider = ldap
access_provider = ldap access_provider = ldap
{% if ldapROURI is defined %}
ldap_uri = {{ ldapURI }}, {{ ldapROURI }}
ldap_chpass_uri = {{ ldapURI }}
{% else %}
ldap_uri = {{ ldapURI }} ldap_uri = {{ ldapURI }}
{% endif %}
ldap_id_use_start_tls = True ldap_id_use_start_tls = True
ldap_tls_reqcert = allow ldap_tls_reqcert = allow
ldap_tls_cacert = {{ ldapCaCertFile }} ldap_tls_cacert = {{ ldapCaCertFile }}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment