self-hosting/roles/nextcloud-docker/templates/nextcloud/config/database.config.php

12 lines
250 B
PHP
Raw Normal View History

2018-07-27 19:14:59 +02:00
<?php
$CONFIG = array (
'dbtype' => 'mysql',
'dbname' => 'nextcloud',
'dbhost' => 'db',
'dbport' => '3306',
'dbtableprefix' => 'oc_',
'dbuser' => 'nextcloud',
'dbpassword' => '{{nextcloud_mysql_password}}',
2019-04-26 01:53:55 +02:00
'mysql.utf8mb4' => true
2018-07-27 19:14:59 +02:00
);