diff options
author | Mark Felder <feld@FreeBSD.org> | 2020-08-07 09:42:10 -0500 |
---|---|---|
committer | Mark Felder <feld@FreeBSD.org> | 2020-08-07 09:42:10 -0500 |
commit | 6ddea8ebe8794a9626f3907a5d0e0db9604bf949 (patch) | |
tree | b4c44f71a5042779889febe3f339351f5447c7e4 | |
parent | cb7879c7c148cfc318a176d19b1402e370c509e7 (diff) | |
download | pleroma-6ddea8ebe8794a9626f3907a5d0e0db9604bf949.tar.gz |
Add a note about the proper value for uid
-rw-r--r-- | docs/configuration/cheatsheet.md | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/configuration/cheatsheet.md b/docs/configuration/cheatsheet.md index f23cf4fe4..d9115a958 100644 --- a/docs/configuration/cheatsheet.md +++ b/docs/configuration/cheatsheet.md @@ -890,6 +890,9 @@ Pleroma account will be created with the same name as the LDAP user name. * `base`: LDAP base, e.g. "dc=example,dc=com" * `uid`: LDAP attribute name to authenticate the user, e.g. when "cn", the filter will be "cn=username,base" +Note, if your LDAP server is an Active Directory server the correct value is commonly `uid: "cn"`, but if you use an +OpenLDAP server the value may be `uid: "uid"`. + ### OAuth consumer mode OAuth consumer mode allows sign in / sign up via external OAuth providers (e.g. Twitter, Facebook, Google, Microsoft, etc.). |