Guest User

Untitled

a guest
Jun 19th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.82 KB | None | 0 0
  1. # LDAP (LDAP Servers)
  2. # once a user is authenticated, LDAP will query the user and pull a list
  3. # of groups that the user belongs to
  4. # These groups will be created in the CMS on the fly and the CMS user will
  5. # be associated with them.
  6. #auth.pipeline.pre=com.dotcms.enterprise.LDAPProxy
  7. #auth.impl.ldap.initial.context.factory=com.sun.jndi.ldap.LdapCtxFactory
  8. # Set SSL if you are using LDAPS or leave blank
  9. #auth.impl.ldap.security.authentication=
  10. # set path to keystore with root server cert imported or leave blank
  11. #auth.impl.ldap.security.keystore.path=
  12. #auth.impl.ldap.host=192.168.1.34
  13. #auth.impl.ldap.port=389
  14. # should be full dn of user
  15. #auth.impl.ldap.userid=cn=xxxxxx,ou=Users,dc=miami,dc=dotmarketing,dc=com
  16. #auth.impl.ldap.password=xxxxxxx
  17. #auth.impl.ldap.domainlookup=dc=miami,dc=dotmarketing,dc=com
  18. #auth.impl.build.groups=true
  19. #auth.impl.ldap.build.group.name.filter=^dotcms_(.*)
  20. # Prefix the dotcms should strip from group name. Leave blank to not strip any prefix.
  21. #auth.impl.ldap.build.group.name.filter.strip=dotcms_
  22. #If you set to false any user created from LDAP will not be able to log into the dotCMS if LDAP is not availible.
  23. auth.impl.ldap.syncPassword=true
  24.  
  25. # The following attributes can be used to match up dotCMS user properties to LDAP Attributes. Uncomment all attributes.
  26. # If you leave the attribute blank then it will not be synced from LDAP.
  27. # NOTE: YOU CANNOT HAVE A GROUP NAME WITH A "=" IN IT
  28.  
  29. #auth.impl.ldap.attrib.user=samAccountName
  30. #auth.impl.ldap.attrib.firstName=givenName
  31. #auth.impl.ldap.attrib.middleName=middleName
  32. #auth.impl.ldap.attrib.lastName=sn
  33. #auth.impl.ldap.attrib.nickName=
  34. #auth.impl.ldap.attrib.email=mail
  35. #auth.impl.ldap.attrib.gender=
  36. #auth.impl.ldap.attrib.group=memberOf
Add Comment
Please, Sign In to add comment