fix handling of pgsql sockets without hostname

This commit is contained in:
Robin Appelman 2024-01-31 18:25:18 +01:00
commit 9ebb0f08ac
3 changed files with 49 additions and 0 deletions

View file

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