Merge pull request #1246 from hedgedoc/fix/heroku_pg_ssl

Ignore Postgres SSL errors on Heroku
This commit is contained in:
David Mehren 2021-05-09 14:59:29 +02:00 committed by GitHub
commit 87c83dcba5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -6,6 +6,16 @@ cat << EOF > config.json
{
"production": {
"db": {
"dialect": "postgres",
"protocol": "postgres",
"dialectOptions": {
"ssl": {
"require": true,
"rejectUnauthorized": false
}
}
}
}
}