Skip to content
This repository has been archived by the owner on Jan 19, 2024. It is now read-only.

Commit

Permalink
fix: reenable require ssl on prod and redisable on dev
Browse files Browse the repository at this point in the history
  • Loading branch information
achauve committed Nov 23, 2023
1 parent b338321 commit adfcd4e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/db/config/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ module.exports = {
dialect: "postgres",
dialectOptions: {
ssl: {
require: true,
require: false,
rejectUnauthorized: false,
},
},
Expand All @@ -25,7 +25,7 @@ module.exports = {
dialect: "postgres",
dialectOptions: {
ssl: {
require: false,
require: true,
rejectUnauthorized: false,
},
},
Expand Down

0 comments on commit adfcd4e

Please sign in to comment.