diff --git a/docs/configuration.md b/docs/configuration.md index 5d7bb4bb2..9d5936231 100644 --- a/docs/configuration.md +++ b/docs/configuration.md @@ -1307,6 +1307,10 @@ module.exports = { sqlDialect: 'postgres', sqlConnectionSsl: true, sqlConnectionUrl: process.env.DATABASE_URL, + sqlDialectOptions: { + // this flag also needs to be set in order to make a secure connection if not setting custom certificates + ssl: true, + }, sequelizeOptions: { pool: { acquire: 30000, @@ -1349,6 +1353,9 @@ module.exports = { sqlDialect: 'postgres', sqlConnectionSsl: true, sqlConnectionUrl: process.env.DATABASE_URL, + sqlDialectOptions: { + ssl: true, + }, sequelizeOptions: { pool: { acquire: 30000,