forked from Personal/ansible-deploy-ldap-fusiondirectory
28 lines
869 B
Plaintext
28 lines
869 B
Plaintext
|
<?xml version="1.0"?>
|
||
|
<conf>
|
||
|
<!-- Main section **********************************************************
|
||
|
The main section defines global settings, which might be overridden by
|
||
|
each location definition inside.
|
||
|
|
||
|
For more information about the configuration parameters, take a look at
|
||
|
the FusionDirectory.conf(5) manual page.
|
||
|
-->
|
||
|
<main default="default"
|
||
|
logging="TRUE"
|
||
|
displayErrors="FALSE"
|
||
|
forceSSL="FALSE"
|
||
|
templateCompileDirectory="/var/spool/fusiondirectory/"
|
||
|
debugLevel="0"
|
||
|
>
|
||
|
|
||
|
<!-- Location definition -->
|
||
|
<location name="default"
|
||
|
ldapTLS="FALSE"
|
||
|
>
|
||
|
<referral URI="ldap://auth.{{ domain }}:389/{{ base_dn }}"
|
||
|
adminDn="{{ ldap_admin_dn }}"
|
||
|
adminPassword="{{ ldap_admin_pass }}" />
|
||
|
</location>
|
||
|
</main>
|
||
|
</conf>
|