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

View File

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