Migrate Nextcloud database to PostgreSQL

This commit is contained in:
Paul-Henri Froidmont 2019-06-08 23:53:21 +02:00
parent 06f72d3930
commit 68a2fbf549
3 changed files with 11 additions and 16 deletions

View file

@ -1,11 +1,9 @@
<?php
$CONFIG = array (
'dbtype' => 'mysql',
'dbtype' => 'pgsql',
'dbname' => 'nextcloud',
'dbhost' => 'db',
'dbport' => '3306',
'dbhost' => 'postgres',
'dbtableprefix' => 'oc_',
'dbuser' => 'nextcloud',
'dbpassword' => '{{nextcloud_mysql_password}}',
'mysql.utf8mb4' => true
'dbpassword' => '{{nextcloud_mysql_password}}'
);