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