self-hosting/roles/nextcloud-docker/templates/nextcloud/config/database.config.php
2019-06-08 23:53:21 +02:00

9 lines
207 B
PHP

<?php
$CONFIG = array (
'dbtype' => 'pgsql',
'dbname' => 'nextcloud',
'dbhost' => 'postgres',
'dbtableprefix' => 'oc_',
'dbuser' => 'nextcloud',
'dbpassword' => '{{nextcloud_mysql_password}}'
);