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