Note that its possible to provide multiple LDAP hosts separated by a space
fixes #11809
This commit is contained in:
parent
e030229d7f
commit
de94749502
|
@ -46,7 +46,8 @@ class LdapResourceForm extends Form
|
|||
'required' => true,
|
||||
'label' => $this->translate('Host'),
|
||||
'description' => $this->translate(
|
||||
'The hostname or address of the LDAP server to use for authentication'
|
||||
'The hostname or address of the LDAP server to use for authentication.'
|
||||
. ' You can also provide multiple hosts separated by a space'
|
||||
),
|
||||
'value' => 'localhost'
|
||||
)
|
||||
|
|
|
@ -63,7 +63,7 @@ A LDAP resource represents a tree in a LDAP directory. LDAP is usually used for
|
|||
| Directive | Description |
|
||||
| ----------------- | ----------- |
|
||||
| **type** | `ldap` |
|
||||
| **hostname** | Connect to the LDAP server on the given host. |
|
||||
| **hostname** | Connect to the LDAP server on the given host. You can also provide multiple hosts separated by a space. |
|
||||
| **port** | Port number to use for the connection. |
|
||||
| **root_dn** | Root object of the tree, e.g. `ou=people,dc=icinga,dc=org` |
|
||||
| **bind_dn** | The user to use when connecting to the server. |
|
||||
|
|
Loading…
Reference in New Issue