Create configuration database

This commit is contained in:
phil 2024-01-04 09:36:28 +01:00
parent bad798a2ee
commit 82012ccb99
5 changed files with 44 additions and 11 deletions

View file

@ -22,5 +22,9 @@ foreach ($hosts as $verbose => $host) {
$cfg['Servers'][$i]['extension'] = 'mysqli';
$cfg['Servers'][$i]['compress'] = FALSE;
$cfg['Servers'][$i]['auth_type'] = 'cookie';
$cfg['Servers'][$i]['controlhost'] = $host;
$cfg['Servers'][$i]['controlport'] = '3306';
$cfg['Servers'][$i]['controluser'] = '{{ phpmyadmin_dbuser }}';
$cfg['Servers'][$i]['controlpass'] = '{{ phpmyadmin_dbpass }}';
}
{% endif %}