Config phpmyadmin 4.8.4 to autologin

This commit is contained in:
Szántó Zoltán 2019-01-18 11:27:58 +02:00 committed by cytopia
parent 94466a0d1f
commit 67c3d8bd13
No known key found for this signature in database
GPG Key ID: 6D56EDB8695128A2

View File

@ -31,7 +31,9 @@ $i = 0;
*/
$i++;
/* Authentication type */
$cfg['Servers'][$i]['auth_type'] = 'cookie';
$cfg['Servers'][$i]['auth_type'] = 'config';
$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = getenv('MYSQL_ROOT_PASSWORD');
/* Server parameters */
$cfg['Servers'][$i]['host'] = '127.0.0.1';
$cfg['Servers'][$i]['compress'] = false;