import from notify_push

This commit is contained in:
Robin Appelman 2021-05-03 17:14:49 +02:00
commit 28e84abd56
17 changed files with 792 additions and 0 deletions

View file

@ -0,0 +1,20 @@
<?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'
]
];