mirror of
https://github.com/plankanban/planka.git
synced 2025-12-27 01:11:50 +03:00
feat: Allow postgres connections that require ssl mode (#404)
Closes #261
This commit is contained in:
@@ -8,7 +8,12 @@ dotenv.config({
|
||||
|
||||
module.exports = {
|
||||
client: 'pg',
|
||||
connection: process.env.DATABASE_URL,
|
||||
connection: {
|
||||
connectionString: process.env.DATABASE_URL,
|
||||
ssl: {
|
||||
rejectUnauthorized: false,
|
||||
},
|
||||
},
|
||||
migrations: {
|
||||
tableName: 'migration',
|
||||
directory: path.join(__dirname, 'migrations'),
|
||||
|
||||
Reference in New Issue
Block a user