W3cubDocs

/Deno

Deno.ListenTlsOptions

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

Extends

Properties

certFile: string

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

keyFile: string

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

transport?: "tcp"