Skip to content

Commit

Permalink
Merge pull request pantsel#328 from Sharparam/patch-1
Browse files Browse the repository at this point in the history
Fix unescaped pipes in LDAP documentation
  • Loading branch information
pantsel authored Jan 31, 2019
2 parents 59ffbb3 + c57f035 commit 3ea25ac
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/LDAP.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ With the LDAP integration, you can authenticate via your LDAP server. Currently
| `KONGA_LDAP_BIND_DN` | *no default* | The DN that the konga should use to login to LDAP to search users |
| `KONGA_LDAP_BIND_PASSWORD` | *no default* | The password for the user konga will use to search for users |
| `KONGA_LDAP_USER_SEARCH_BASE` | `ou=users,dc=com` | The base DN used to search for users |
| `KONGA_LDAP_USER_SEARCH_FILTER` | `(|(uid={{username}})(sAMAccountName={{username}}))` | The filter expression used to search for users. Use `{{username}}` where you expect the username to be. |
| `KONGA_LDAP_USER_SEARCH_FILTER` | `(\|(uid={{username}})(sAMAccountName={{username}}))` | The filter expression used to search for users. Use `{{username}}` where you expect the username to be. |
| `KONGA_LDAP_USER_ATTRS` | `uid,uidNumber,givenName,sn,mail` | Comma separated list of attributes to pull from the LDAP server for users |
| `KONGA_LDAP_GROUP_SEARCH_BASE` | `ou=groups,dc=com` | The base DN used to search for groups |
| `KONGA_LDAP_GROUP_SEARCH_FILTER` | `(|(memberUid={{uid}})(memberUid={{uidNumber}})(sAMAccountName={{uid}}))` | The filter expression used to search for groups. Use `{{some-attr}}` where you expect a user attribute to be or `{{dn}}` for the user `dn`. |
| `KONGA_LDAP_GROUP_SEARCH_FILTER` | `(\|(memberUid={{uid}})(memberUid={{uidNumber}})(sAMAccountName={{uid}}))` | The filter expression used to search for groups. Use `{{some-attr}}` where you expect a user attribute to be or `{{dn}}` for the user `dn`. |
| `KONGA_LDAP_GROUP_ATTRS` | `cn` | Comma separated list of attributes to pull from the LDAP server for groups |
| `KONGA_ADMIN_GROUP_REG` | `^(admin|konga)$` | Regular expression used to determine if a group should be considered as an admin user |
| `KONGA_ADMIN_GROUP_REG` | `^(admin\|konga)$` | Regular expression used to determine if a group should be considered as an admin user |
| `KONGA_LDAP_ATTR_USERNAME` | `uid` | LDAP attribute name that should be used as the konga username |
| `KONGA_LDAP_ATTR_FIRSTNAME` | `givenName` | LDAP attribute name that should be used as the konga user's first name |
| `KONGA_LDAP_ATTR_LASTNAME` | `sn` | LDAP attribute name that should be used as the konga user's last name |
Expand Down

0 comments on commit 3ea25ac

Please sign in to comment.