Skip to main content
Module

x/netzo/deno.d.ts>Deno.ListenTlsOptions

SDK for Netzo, the open Web platform to unify IoT devices, applications and services.
Go to Latest
interface Deno.ListenTlsOptions
implements ListenOptions
import { type Deno } from "https://deno.land/x/netzo@v0.1.10/deno.d.ts";
const { ListenTlsOptions } = Deno;

Properties

optional
key: string

Server private key in PEM format

optional
cert: string

Cert chain in PEM format

optional
deprecated
certFile: string

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

optional
deprecated
keyFile: string

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

optional
transport: "tcp"