mirror of
https://github.com/phfroidmont/self-hosting.git
synced 2025-12-25 05:36:59 +01:00
9 lines
207 B
PHP
9 lines
207 B
PHP
<?php
|
|
$CONFIG = array (
|
|
'dbtype' => 'pgsql',
|
|
'dbname' => 'nextcloud',
|
|
'dbhost' => 'postgres',
|
|
'dbtableprefix' => 'oc_',
|
|
'dbuser' => 'nextcloud',
|
|
'dbpassword' => '{{nextcloud_mysql_password}}'
|
|
);
|