An Ansible Playbook to deploy OpenLDAP and FusionDirectory
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
869B

  1. <?xml version="1.0"?>
  2. <conf>
  3. <!-- Main section **********************************************************
  4. The main section defines global settings, which might be overridden by
  5. each location definition inside.
  6. For more information about the configuration parameters, take a look at
  7. the FusionDirectory.conf(5) manual page.
  8. -->
  9. <main default="default"
  10. logging="TRUE"
  11. displayErrors="FALSE"
  12. forceSSL="FALSE"
  13. templateCompileDirectory="/var/spool/fusiondirectory/"
  14. debugLevel="0"
  15. >
  16. <!-- Location definition -->
  17. <location name="default"
  18. ldapTLS="FALSE"
  19. >
  20. <referral URI="ldap://auth.{{ domain }}:389/{{ base_dn }}"
  21. adminDn="{{ ldap_admin_dn }}"
  22. adminPassword="{{ ldap_admin_pass }}" />
  23. </location>
  24. </main>
  25. </conf>