Skip to content

Corrected grammar to increase readability. #13957

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 13, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions security/ldap.rst
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ use the ``ldap`` user provider.
data. It's a static user defined by its username and password (for improved
security, define the password as an environment variable).

If your LDAP server allows to retrieve information anonymously, you can
If your LDAP server allows retrieval of information anonymously, you can
set the ``search_dn`` and ``search_password`` options to ``null``.

The ``ldap`` user provider supports many different configuration options:
Expand All @@ -240,15 +240,15 @@ search_dn
**type**: ``string`` **default**: ``null``

This is your read-only user's DN, which will be used to authenticate
against the LDAP server in order to fetch the user's information.
against the LDAP server to fetch the user's information.

search_password
...............

**type**: ``string`` **default**: ``null``

This is your read-only user's password, which will be used to authenticate
against the LDAP server in order to fetch the user's information.
against the LDAP server to fetch the user's information.

default_roles
.............
Expand Down Expand Up @@ -302,7 +302,7 @@ load the user ``fabpot``, the final string will be: ``(uid=fabpot)``.
If you pass ``null`` as the value of this option, the default filter is used
``({uid_key}={username})``.

In order to prevent `LDAP injection`_, the username will be escaped.
To prevent `LDAP injection`_, the username will be escaped.

The syntax for the ``filter`` key is defined by `RFC4515`_.

Expand All @@ -329,7 +329,7 @@ dn_string

**type**: ``string`` **default**: ``{username}``

This key defines the form of the string used in order to compose the
This key defines the form of the string used to compose the
DN of the user, from the username. The ``{username}`` string is
replaced by the actual username of the person trying to authenticate.

Expand Down