@darthcav/ts-http-server
    Preparing search index...

    Type Alias KeycloakAuthConfig

    Configuration for Keycloak-backed JWT authentication.

    type KeycloakAuthConfig = {
        clientId: string;
        realm: string;
        url: string;
    }
    Index
    clientId: string

    Client ID registered in the realm. Used as the expected aud (audience) claim when verifying bearer tokens, so tokens minted for other clients in the same realm are rejected.

    realm: string

    Keycloak realm name.

    url: string

    Keycloak server base URL, e.g. https://auth.example.com.