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

    Type Alias KeycloakAuthConfig

    Configuration for Keycloak-backed JWT authentication.

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

    Properties

    clientId: string

    Client ID registered in the realm; used as the expected audience.

    clientSecret: string

    Client secret for the registered client.

    realm: string

    Keycloak realm name.

    url: string

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