mirror of
https://codeberg.org/icewind/nextcloud-config-parser.git
synced 2026-06-03 16:44:09 +02:00
import from notify_push
This commit is contained in:
commit
28e84abd56
17 changed files with 792 additions and 0 deletions
9
tests/configs/multiple/config.php
Normal file
9
tests/configs/multiple/config.php
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
<?php
|
||||
|
||||
$CONFIG = [
|
||||
'overwrite.cli.url' => 'https://cloud.example.com',
|
||||
'redis' => [
|
||||
'host' => 'localhost'
|
||||
],
|
||||
'dbtype' => 'sqlite',
|
||||
];
|
||||
11
tests/configs/multiple/db.config.php
Normal file
11
tests/configs/multiple/db.config.php
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
<?php
|
||||
|
||||
$CONFIG = [
|
||||
'dbtype' => 'mysql',
|
||||
'dbname' => 'nextcloud',
|
||||
'dbhost' => '127.0.0.1',
|
||||
'dbport' => '',
|
||||
'dbtableprefix' => 'oc_',
|
||||
'dbuser' => 'nextcloud',
|
||||
'dbpassword' => 'secret'
|
||||
];
|
||||
Loading…
Add table
Add a link
Reference in a new issue