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)\" }" ```