fix ipv6 database host

This commit is contained in:
Robin Appelman 2026-03-04 15:03:57 +01:00
commit 70543db580
3 changed files with 54 additions and 9 deletions

15
tests/configs/ipv6_db.php Normal file
View file

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