diff options
author | link0ff <juri@linkov.net> | 2019-03-12 18:20:02 +0200 |
---|---|---|
committer | link0ff <juri@linkov.net> | 2019-03-12 18:20:02 +0200 |
commit | 9338f061a303ae3d57a8ea1af524c2ca51929f8d (patch) | |
tree | d404e2747babd7e85e7dad1483982d86aa4a5c4d /docs/config.md | |
parent | 88a672fe88deae53d5459d651859be65555e6af2 (diff) | |
download | pleroma-9338f061a303ae3d57a8ea1af524c2ca51929f8d.tar.gz pleroma-9338f061a303ae3d57a8ea1af524c2ca51929f8d.zip |
Support LDAP method start_tls
Diffstat (limited to 'docs/config.md')
-rw-r--r-- | docs/config.md | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/docs/config.md b/docs/config.md index 8d6770959..7052b1eb4 100644 --- a/docs/config.md +++ b/docs/config.md @@ -329,13 +329,21 @@ config :auto_linker, ## :ldap +Use LDAP for user authentication. When a user logs in to the Pleroma +instance, the name and password will be verified by trying to authenticate +(bind) to an LDAP server. If a user exists in the LDAP directory but there +is no account with the same name yet on the Pleroma instance then a new +Pleroma account will be created with the same name as the LDAP user name. + * `enabled`: enables LDAP authentication * `host`: LDAP server hostname * `port`: LDAP port, e.g. 389 or 636 -* `ssl`: true to use SSL +* `ssl`: true to use SSL, usually implies the port 636 * `sslopts`: additional SSL options +* `tls`: true to start TLS, usually implies the port 389 +* `tlsopts`: additional TLS options * `base`: LDAP base, e.g. "dc=example,dc=com" -* `uid`: attribute type to authenticate the user, e.g. when "cn", the filter will be "cn=username,base" +* `uid`: LDAP attribute name to authenticate the user, e.g. when "cn", the filter will be "cn=username,base" ## Pleroma.Web.Auth.Authenticator |