mirror of
https://github.com/plankanban/planka.git
synced 2025-07-19 13:19:44 +02:00
revert: Allow postgres connections that require ssl mode (#408)
This reverts commit eea57ff121
.
This commit is contained in:
parent
02eabd203c
commit
3d84888eb1
3 changed files with 1 additions and 16 deletions
|
@ -23,11 +23,6 @@ services:
|
||||||
- TRUST_PROXY=0
|
- TRUST_PROXY=0
|
||||||
- DATABASE_URL=postgresql://postgres@postgres/planka
|
- DATABASE_URL=postgresql://postgres@postgres/planka
|
||||||
- SECRET_KEY=notsecretkey
|
- SECRET_KEY=notsecretkey
|
||||||
# related: https://github.com/knex/knex/issues/2354
|
|
||||||
# As knex does not pass query parameters from the connection string we
|
|
||||||
# have to use environment variables in order to pass the desired values, e.g.
|
|
||||||
# note: this is optional
|
|
||||||
# PGSSLMODE=require
|
|
||||||
depends_on:
|
depends_on:
|
||||||
- postgres
|
- postgres
|
||||||
|
|
||||||
|
|
|
@ -9,11 +9,6 @@ SECRET_KEY=notsecretkey
|
||||||
# TRUST_PROXY=0
|
# TRUST_PROXY=0
|
||||||
# TOKEN_EXPIRES_IN=365 # In days
|
# TOKEN_EXPIRES_IN=365 # In days
|
||||||
|
|
||||||
# related: https://github.com/knex/knex/issues/2354
|
|
||||||
# As knex does not pass query parameters from the connection string we
|
|
||||||
# have to use environment variables in order to pass the desired values, e.g.
|
|
||||||
# PGSSLMODE=<value>
|
|
||||||
|
|
||||||
## Do not edit this
|
## Do not edit this
|
||||||
|
|
||||||
TZ=UTC
|
TZ=UTC
|
||||||
|
|
|
@ -8,12 +8,7 @@ dotenv.config({
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
client: 'pg',
|
client: 'pg',
|
||||||
connection: {
|
connection: process.env.DATABASE_URL,
|
||||||
connectionString: process.env.DATABASE_URL,
|
|
||||||
ssl: {
|
|
||||||
rejectUnauthorized: false,
|
|
||||||
},
|
|
||||||
},
|
|
||||||
migrations: {
|
migrations: {
|
||||||
tableName: 'migration',
|
tableName: 'migration',
|
||||||
directory: path.join(__dirname, 'migrations'),
|
directory: path.join(__dirname, 'migrations'),
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue