mirror of
https://github.com/phfroidmont/self-hosting.git
synced 2025-12-25 13:46:59 +01:00
Migrate Nextcloud database to PostgreSQL
This commit is contained in:
parent
06f72d3930
commit
68a2fbf549
3 changed files with 11 additions and 16 deletions
|
|
@ -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}}'
|
||||
);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue