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.

37 lines
1.0 KiB

  1. key: ldap
  2. title: LDAP / Active Directory
  3. description: Active Directory is a directory service that Microsoft developed for the Windows domain networks.
  4. author: requarks.io
  5. logo: https://static.requarks.io/logo/active-directory.svg
  6. color: blue darken-3
  7. website: https://www.microsoft.com/windowsserver
  8. useForm: true
  9. props:
  10. url:
  11. title: URL
  12. type: String
  13. default: 'ldap://serverhost:389'
  14. hint: (e.g. ldap://serverhost:389)
  15. bindDn:
  16. title: Bind DN
  17. type: String
  18. default: cn='root'
  19. hint: The dstinguished name (dn) of the account used for binding.
  20. bindCredentials:
  21. type: String
  22. hint: The password of the account used for binding.
  23. searchBase:
  24. type: String
  25. default: 'o=users,o=example.com'
  26. searchFilter:
  27. type: String
  28. default: '(uid={{username}})'
  29. hint: The query to use to match username. {{username}} must be present.
  30. tlsEnabled:
  31. title: Use TLS
  32. type: Boolean
  33. default: false
  34. tlsCertPath:
  35. title: TLS Certificate Path
  36. type: String
  37. hint: Absolute path to the TLS certificate on the server.