37 lines
854 B
PHP
37 lines
854 B
PHP
|
<?php
|
||
|
/**
|
||
|
* phpMyAdmin sample configuration, you can use it as base for
|
||
|
* manual configuration. For easier setup you can use setup/
|
||
|
*
|
||
|
* All directives are explained in documentation in the doc/ folder
|
||
|
* or at <https://docs.phpmyadmin.net/>.
|
||
|
*/
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
/**
|
||
|
* This is needed for cookie based authentication to encrypt password in
|
||
|
* cookie. Needs to be 32 chars long.
|
||
|
*/
|
||
|
$cfg['blowfish_secret'] = 'Z2RVfRex/rIuhv2AAJXQuzbllMs5PelMIWWMCO4Aoag=';
|
||
|
|
||
|
/**
|
||
|
* Servers configuration
|
||
|
*/
|
||
|
$i = 0;
|
||
|
|
||
|
/**
|
||
|
* First server
|
||
|
*/
|
||
|
$i++;
|
||
|
/* Authentication type */
|
||
|
$cfg['Servers'][$i]['auth_type'] = 'cookie';
|
||
|
/* Server parameters */
|
||
|
$cfg['Servers'][$i]['host'] = 'localhost';
|
||
|
$cfg['Servers'][$i]['compress'] = false;
|
||
|
$cfg['Servers'][$i]['AllowNoPassword'] = false;
|
||
|
$cfg['UploadDir'] = '';
|
||
|
$cfg['SaveDir'] = '';
|
||
|
$cfg['AllowArbitraryServer'] = true;
|
||
|
|