@accelerated-software-development/caddy-api-client - v0.4.3
    Preparing search index...

    Interface BuildLdapIdentityStoreOptions

    Options for building an LDAP identity store

    interface BuildLdapIdentityStoreOptions {
        bindPassword: string;
        bindUsername: string;
        groups?: LdapGroupConfig[];
        name?: string;
        realm?: string;
        searchBaseDn: string;
        searchUserFilter?: string;
        servers: LdapServerConfig[];
    }
    Index

    Properties

    bindPassword: string

    Bind password for LDAP authentication

    bindUsername: string

    Bind username for LDAP queries (full DN)

    "cn=admin,dc=example,dc=com"
    
    groups?: LdapGroupConfig[]

    Group to role mappings

    []
    
    name?: string

    Name of the identity store (used to reference it in portals)

    "ldapdb"
    
    realm?: string

    Realm name for this identity store

    "ldap"
    
    searchBaseDn: string

    Base DN for user searches

    "ou=users,dc=example,dc=com"
    
    searchUserFilter?: string

    LDAP search filter template for users

    "(uid={username})"
    
    servers: LdapServerConfig[]

    LDAP server(s) to connect to