15 lines
463 B
PHP
15 lines
463 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
$cfg['blowfish_secret'] = 'changeme';
|
|
$i = 0;
|
|
$i++;
|
|
$cfg['Servers'][$i]['auth_type'] = 'cookie';
|
|
$cfg['Servers'][$i]['hide_db'] = 'information_schema|performance_schema|mysql|wsrep';
|
|
$cfg['Servers'][$i]['host'] = '127.0.0.1';
|
|
$cfg['Servers'][$i]['compress'] = false;
|
|
$cfg['Servers'][$i]['AllowNoPassword'] = false;
|
|
$cfg['UploadDir'] = '';
|
|
$cfg['SaveDir'] = '';
|
|
$cfg['TempDir'] = '/tmp';
|
|
$cfg['PmaNoRelation_DisableWarning'] = true;
|