self-hosting/roles/nextcloud-docker/templates/nextcloud/config/database.config.php
2018-07-27 19:14:59 +02:00

10 lines
224 B
PHP

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