mirror of
https://codeberg.org/icewind/nextcloud-config-parser.git
synced 2026-06-03 08:34:13 +02:00
31 lines
862 B
PHP
31 lines
862 B
PHP
<?php
|
|
|
|
/**
|
|
* WARNING
|
|
*
|
|
* This file gets modified by automatic processes and all lines that are not
|
|
* active code (ie. comments) are lost during that process.
|
|
*
|
|
* If you want to document things with comments or use constants add your settings
|
|
* in a '<NAME>.config.php' file which will be included and rendered into this file.
|
|
*
|
|
* Example:
|
|
* <?php
|
|
* $CONFIG = [];
|
|
*
|
|
* See also: https://docs.nextcloud.com/server/latest/admin_manual/configuration_server/config_sample_php_parameters.html#multiple-merged-configuration-files
|
|
*/
|
|
|
|
$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",
|
|
],
|
|
];
|