mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-22 09:46:30 -05:00
Merge pull request #1246 from hedgedoc/fix/heroku_pg_ssl
Ignore Postgres SSL errors on Heroku
This commit is contained in:
commit
87c83dcba5
1 changed files with 10 additions and 0 deletions
10
bin/heroku
10
bin/heroku
|
@ -6,6 +6,16 @@ cat << EOF > config.json
|
||||||
|
|
||||||
{
|
{
|
||||||
"production": {
|
"production": {
|
||||||
|
"db": {
|
||||||
|
"dialect": "postgres",
|
||||||
|
"protocol": "postgres",
|
||||||
|
"dialectOptions": {
|
||||||
|
"ssl": {
|
||||||
|
"require": true,
|
||||||
|
"rejectUnauthorized": false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue