diff options
author | startxfr <clarue@startx.fr> | 2014-12-06 01:09:00 +0100 |
---|---|---|
committer | startxfr <clarue@startx.fr> | 2014-12-06 01:09:00 +0100 |
commit | 076db03abf9ac12a057b784a3e0999180ca53543 (patch) | |
tree | 86553f1f030a07290a65d1696772488079088e54 /Applications/phpmyadmin/config.php | |
parent | 391988d9e6ca3dd863d55a2d84189fda6aeb990c (diff) | |
download | phpmyadmin-076db03abf9ac12a057b784a3e0999180ca53543.tar.gz phpmyadmin-076db03abf9ac12a057b784a3e0999180ca53543.tar.bz2 phpmyadmin-076db03abf9ac12a057b784a3e0999180ca53543.tar.xz phpmyadmin-076db03abf9ac12a057b784a3e0999180ca53543.zip |
adding script for automating image generation and starting container for testing and benchmarks
Diffstat (limited to 'Applications/phpmyadmin/config.php')
-rw-r--r-- | Applications/phpmyadmin/config.php | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Applications/phpmyadmin/config.php b/Applications/phpmyadmin/config.php new file mode 100644 index 0000000..20e4276 --- /dev/null +++ b/Applications/phpmyadmin/config.php @@ -0,0 +1,13 @@ +<?php +// fichier qui provient du container startx/app-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'; + +?> |