handle postgres without password

fixes #4
This commit is contained in:
Robin Appelman 2023-03-30 13:03:48 +02:00
commit 39e4ae9a2b
4 changed files with 46 additions and 3 deletions

View file

@ -0,0 +1,14 @@
<?php
$CONFIG = [
'overwrite.cli.url' => 'https://cloud.example.com',
'dbtype' => 'pgsql',
'dbname' => 'nextcloud',
'dbhost' => 'localhost:/var/run/postgresql/.s.PGSQL.5432',
'dbport' => '',
'dbtableprefix' => 'oc_',
'dbuser' => 'redacted',
'redis' => [
'host' => 'localhost'
]
];