mirror of
https://codeberg.org/icewind/nextcloud-config-parser.git
synced 2026-06-04 00:54:11 +02:00
15 lines
280 B
PHP
15 lines
280 B
PHP
<?php
|
|
|
|
$CONFIG = [
|
|
'overwrite.cli.url' => 'https://cloud.example.com',
|
|
'dbtype' => 'mysql',
|
|
'dbname' => 'nextcloud',
|
|
'dbhost' => 'localhost',
|
|
'dbport' => '',
|
|
'dbuser' => 'nextcloud',
|
|
'dbpassword' => 'secret',
|
|
'redis' => [
|
|
'host' => 'localhost',
|
|
'password' => ''
|
|
]
|
|
];
|