Type alias JimpexHTTPSCredentials

JimpexHTTPSCredentials: {
    ca?: string;
    cert?: string;
    key?: string;
}

The paths to the SSL credentials. Depending on the application options, they can be relative to the project root, or the application executable, but they can't be absolute.

Type declaration

  • Optional ca?: string

    The path to the certificate authority file.

  • Optional cert?: string

    The path to the certificate file.

  • Optional key?: string

    The path to the key file.

Generated using TypeDoc