diff options
author | chris <cl@startx.fr> | 2014-06-20 19:27:35 +0200 |
---|---|---|
committer | chris <cl@startx.fr> | 2014-06-20 19:27:35 +0200 |
commit | 4c69461903ba2dafda2e3d2c856d86148edf5b07 (patch) | |
tree | 2923dda8792064d577b2183eac4452b290552357 /Applications/phpmyadmin/config.inc.php | |
parent | 8b6370786114c8491e5ce7150a9ee10d4f5fbf76 (diff) | |
download | phpmyadmin-4c69461903ba2dafda2e3d2c856d86148edf5b07.tar.gz phpmyadmin-4c69461903ba2dafda2e3d2c856d86148edf5b07.tar.bz2 phpmyadmin-4c69461903ba2dafda2e3d2c856d86148edf5b07.tar.xz phpmyadmin-4c69461903ba2dafda2e3d2c856d86148edf5b07.zip |
Added sample to the readme and change directory structure
Diffstat (limited to 'Applications/phpmyadmin/config.inc.php')
-rw-r--r-- | Applications/phpmyadmin/config.inc.php | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Applications/phpmyadmin/config.inc.php b/Applications/phpmyadmin/config.inc.php new file mode 100644 index 0000000..7458071 --- /dev/null +++ b/Applications/phpmyadmin/config.inc.php @@ -0,0 +1,13 @@ +<?php +// fichier qui provient de l'image startx/pma +$cfg['blowfish_secret'] = 'SECRET'; +$cfg['PmaNoRelation_DisableWarning'] = true; +$i = 0; +$i++; +$cfg['Servers'][$i]['extension'] = 'mysqli'; +$cfg['Servers'][$i]['host'] = 'mariadb'; +$cfg['Servers'][$i]['controlhost'] = ''; +$cfg['Servers'][$i]['controluser'] = 'root'; +$cfg['Servers'][$i]['controlpass'] = 'secretdemerde'; + +?> |