forked from Personal/ansible-deploy-ldap-fusiondirectory
Initial Commit
This commit is contained in:
commit
d8efe45362
14 changed files with 1366 additions and 0 deletions
27
templates/fusiondirectory.conf.j2
Normal file
27
templates/fusiondirectory.conf.j2
Normal file
|
@ -0,0 +1,27 @@
|
|||
<?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>
|
Loading…
Add table
Add a link
Reference in a new issue