Skip to content

Commit

Permalink
Don't use ssl
Browse files Browse the repository at this point in the history
  • Loading branch information
darnfish committed Nov 10, 2023
1 parent f54edcf commit b713687
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion lib/knex.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@ import Knex from 'knex'

const knex = Knex({
client: 'pg',
connection: process.env.POSTGRES_URL
connection: {
connectionString: process.env.POSTGRES_URL,
ssl: false
}
})

export default knex

0 comments on commit b713687

Please sign in to comment.