deno / 1.23.2 / ~ / deno.listentlsoptions.html /

Deno.ListenTlsOptions

interface ListenTlsOptions extends ListenOptions {
cert? : string;
certFile? : string;
key? : string;
keyFile? : string;
transport? : "tcp";
}

Extends

Properties

cert? : string

Cert chain in PEM format

certFile? : string

Path to a file containing a PEM formatted CA certificate. Requires --allow-read.

key? : string

Server private key in PEM format

keyFile? : string

Server private key file. Requires --allow-read.

transport? : "tcp"