HTTPS listener settings read by the CLI entry point when the application bootstraps an HTTPS server and reloads certificates on SIGHUP (see bin/www.ts).

interface HTTPSConfig {
    caPath?: string;
    certPath: string;
    enabled: boolean;
    host?: string;
    keyPath: string;
    port: number;
}

Properties

caPath?: string
certPath: string
enabled: boolean
host?: string
keyPath: string
port: number