Documentation

server

This clause defines the LDAP server to connect to. A single backend can have multiple LDAP servers configured. The server is configured with a name.

Example configuration of an LDAP server:

server "ldap.forumsys.com" {
    # LDAP URL
    url "ldap://ldap.forumsys.com:389/";

    # Operation timeout (supports duration units like 3s, 5m, 1h)
    timeout 3s;

    # How many sockets/connections at maximum to open
    #connections 10;

    # (Optional) Authentication
    authentication {...}

    # (Optional) TLS client configuration
    #tls {...}
}
Navigation
Parents