add test for separate notify_push redis

This commit is contained in:
Robin Appelman 2025-08-07 17:12:37 +02:00
commit 9ada18d5a6
2 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,17 @@
<?php
$CONFIG = [
'overwrite.cli.url' => 'https://cloud.example.com',
'dbtype' => 'mysql',
'dbname' => 'nextcloud',
'dbhost' => 'localhost',
'dbport' => '',
'dbuser' => 'nextcloud',
'dbpassword' => 'secret',
'redis' => [
'host' => '/redis1',
],
'notify_push_redis' => [
'host' => '/redis2',
]
];