nextcloud-config-parser/tests/configs/full_redis.php

17 lines
322 B
PHP

<?php
$CONFIG = [
'overwrite.cli.url' => 'https://cloud.example.com',
'dbtype' => 'mysql',
'dbname' => 'nextcloud',
'dbhost' => 'localhost',
'dbport' => '',
'dbuser' => 'nextcloud',
'dbpassword' => 'secret',
'redis' => [
'host' => 'redis',
'dbindex' => 1,
'port' => 1234,
'password' => 'moresecret'
]
];