An Ansible Playbook to deploy OpenLDAP and FusionDirectory
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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