update literal parser

This commit is contained in:
Robin Appelman 2021-09-09 16:32:05 +02:00
commit b388c2ccf0
4 changed files with 43 additions and 14 deletions

View file

@ -0,0 +1,18 @@
<?php
$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'
],
'apps_paths' => [
['path' => '/foo', 'url' => '/foo'],
]
];