Deno.ListenTlsOptions

interface ListenTlsOptions extends TcpListenOptions {
alpnProtocols?: string[];
cert?: string;
certFile?: string;
key?: string;
keyFile?: string;
transport?: "tcp";
}

§Extends

§Properties

§
alpnProtocols?: string[]
[src]

Application-Layer Protocol Negotiation (ALPN) protocols to announce to the client. If not specified, no ALPN extension will be included in the TLS handshake.

§
cert?: string
[src]

Cert chain in PEM format

§
certFile?: string
[src]

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

§
key?: string
[src]

Server private key in PEM format

§
keyFile?: string
[src]

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

§
transport?: "tcp"
[src]