Skip to content

Commit

Permalink
fix warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
fantkolja committed Sep 18, 2024
1 parent b84c3a1 commit 24396e4
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docs/modules/launching/pages/auth-options.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,10 @@ Provide the details in this form for your Active Directory server:
schema (`ldap://` or `ldaps://`) and port.
* **Domain:** Domain of your organization on Active Directory.
* **User Search Filter:** LDAP search filter expression to search
for the users. `{0}` will be replaced with `username@domain` and
`{1}` will be replaced with only the `username`. You can use both
for the users. `\{0}` will be replaced with `username@domain` and
`\{1}` will be replaced with only the `username`. You can use both
placeholders, only one of them or none in your search filter. For
example, `(&(objectClass=user)(userPrincipalName={0}))` searches
example, `(&(objectClass=user)(userPrincipalName=\{0}))` searches
for a username that matches with the `userPrincipalName` attribute
and member of the object class `user`.
* **Admin Group(s):** Members of this group and its nested groups
Expand Down Expand Up @@ -258,10 +258,10 @@ have the privilege to see only the metrics on the Management Center.
To use more than one group, separate them with a semicolon (;).
* **Start TLS:** Enable if your LDAP server uses **Start TLS** operation.
* **User Search Filter:** LDAP search filter expression to search for
the users. For example, `uid={0}` searches for a username that matches with
the users. For example, `uid=\{0}` searches for a username that matches with
the `uid` attribute.
* **Group Search Filter:** LDAP search filter expression to search for
the groups. For example, `uniquemember={0}` searches for a group that
the groups. For example, `uniquemember=\{0}` searches for a group that
matches with the `uniquemember` attribute.
* **Nested Group Search:** Disable if you have a large LDAP group structure
and it takes a long time to query all nested groups during login.
Expand Down

0 comments on commit 24396e4

Please sign in to comment.