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

    Interface SecurityAuthenticatorHandler

    Authentication portal middleware handler

    Serves the authentication portal UI and handles credential validation. Issues JWT tokens upon successful authentication.

    Module ID: http.handlers.authenticator

    const handler: SecurityAuthenticatorHandler = {
    handler: "authenticator",
    portal_name: "myportal",
    route_matcher: "example.com",
    };
    interface SecurityAuthenticatorHandler {
        handler: "authenticator";
        portal_name?: string;
        route_matcher?: string;
    }
    Index

    Properties

    handler: "authenticator"
    portal_name?: string

    Name of the authentication portal defined in the security app config. References a portal in /config/apps/security/config/authentication_portals

    route_matcher?: string

    Route matcher pattern for this handler. Typically matches the domain serving the portal.