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

    Interface SecurityAuthorizerProvider

    Authorizer provider configuration

    This is the configuration for the authorizer provider within Caddy's authentication handler. It validates JWT/PASETO tokens and enforces access control policies.

    Module ID: http.authentication.providers.authorizer

    Note: This is NOT a standalone handler - it's used as a provider within the authentication handler via the providers.authorizer field.

    const provider: SecurityAuthorizerProvider = {
    gatekeeper_name: "mygatekeeper",
    route_matcher: "*",
    };
    interface SecurityAuthorizerProvider {
        gatekeeper_name?: string;
        route_matcher?: string;
    }
    Index

    Properties

    gatekeeper_name?: string

    Name of the gatekeeper/policy defined in the security app config. References a policy in /config/apps/security/config/authorization_policies

    route_matcher?: string

    Route matcher pattern for this provider.