Interface HttpsOptions

interface HttpsOptions {
    cert: string;
    countryName?: string;
    key: string;
    keyLength?: number;
    localityName?: string;
    organizationName?: string;
}

Hierarchy

  • BaseCAOptions
    • HttpsOptions

Properties

cert: string
countryName?: string

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

key: string
keyLength?: number

Minimum key length when generating certificates. Defaults to 2048.

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.