An Ansible Playbook to deploy OpenLDAP and FusionDirectory
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

28 lignes
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>