Skip to main content
Module

x/postgres/mod.ts>TLSOptions

PostgreSQL driver for Deno
Extremely Popular
Go to Latest
interface TLSOptions
import { type TLSOptions } from "https://deno.land/x/postgres@v0.17.0/mod.ts";

Properties

enabled: boolean

If TLS support is enabled or not. If the server requires TLS, the connection will fail.

Default: true

enforce: boolean

This will force the connection to run over TLS If the server doesn't support TLS, the connection will fail

Default: false

caCertificates: string[]

A list of root certificates that will be used in addition to the default root certificates to verify the server's certificate.

Must be in PEM format.

Default: []