1
0
Fork 0
mirror of https://github.com/Chocobozzz/PeerTube.git synced 2025-10-03 09:49:20 +02:00

Add ssl support to postgresql

This commit is contained in:
Chocobozzz 2020-08-24 11:38:57 +02:00
parent 4f24f16e27
commit b0ce7c39dc
No known key found for this signature in database
GPG key ID: 583A612D890159BE
5 changed files with 6 additions and 0 deletions

View file

@ -23,6 +23,7 @@ const CONFIG = {
DBNAME: config.has('database.name') ? config.get<string>('database.name') : 'peertube' + config.get<string>('database.suffix'),
HOSTNAME: config.get<string>('database.hostname'),
PORT: config.get<number>('database.port'),
SSL: config.get<boolean>('database.ssl'),
USERNAME: config.get<string>('database.username'),
PASSWORD: config.get<string>('database.password'),
POOL: {