mirror of
https://codeberg.org/icewind/nextcloud-config-parser.git
synced 2026-06-03 16:44:09 +02:00
15 lines
322 B
PHP
15 lines
322 B
PHP
<?php
|
|
|
|
$CONFIG = [
|
|
'overwrite.cli.url' => 'https://cloud.example.com',
|
|
'dbtype' => 'pgsql',
|
|
'dbname' => 'nextcloud',
|
|
'dbhost' => 'localhost:/var/run/postgresql/.s.PGSQL.5432',
|
|
'dbport' => '',
|
|
'dbtableprefix' => 'oc_',
|
|
'dbuser' => 'redacted',
|
|
'dbpassword' => 'redacted',
|
|
'redis' => [
|
|
'host' => 'localhost'
|
|
]
|
|
];
|