From 4fc0f617538983a24c49ef351b0c33b17ee392c0 Mon Sep 17 00:00:00 2001 From: Simon Hornby Date: Tue, 18 Jul 2023 14:11:25 +0200 Subject: [PATCH] docs: update postgres ssl docs to accurately use ca over key (#4271) --- website/docs/reference/deploy/configuring-unleash.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/docs/reference/deploy/configuring-unleash.md b/website/docs/reference/deploy/configuring-unleash.md index c8e3895772..c69578caa9 100644 --- a/website/docs/reference/deploy/configuring-unleash.md +++ b/website/docs/reference/deploy/configuring-unleash.md @@ -299,7 +299,7 @@ const unleashOptions = { ```bash title="Reading from the file system with bash" -DATABASE_SSL="{ \"key\": \"$(cat /path/to/server-certificates/root.crt)\" }" +DATABASE_SSL="{ \"ca\": \"$(cat /path/to/server-certificates/root.crt)\" }" ``` @@ -331,7 +331,7 @@ const unleashOptions = { ```bash title="Enable self-signed certificates" -DATABASE_SSL="{ \"rejectUnauthorized\": false, \"key\": \"$(cat /path/to/server-certificates/root.crt)\" }" +DATABASE_SSL="{ \"rejectUnauthorized\": false, \"ca\": \"$(cat /path/to/server-certificates/root.crt)\" }" ```