Interface HttpsPathOptions

interface HttpsPathOptions {
    certPath: string;
    countryName?: string;
    keyLength?: number;
    keyPath: string;
    localityName?: string;
    organizationName?: string;
}

Hierarchy

  • BaseCAOptions
    • HttpsPathOptions

Properties

certPath: string
countryName?: string

The countryName that will be used in the certificate for incoming TLS connections.

keyLength?: number

Minimum key length when generating certificates. Defaults to 2048.

keyPath: string
localityName?: string

The localityName that will be used in the certificate for incoming TLS connections.

organizationName?: string

The organizationName that will be used in the certificate for incoming TLS connections.