3 * Debian local configuration file
5 * This file overrides the settings made by phpMyAdmin interactive setup
8 * For example configuration see /usr/share/doc/phpmyadmin/examples/config.default.php.gz
10 * NOTE: do not add security sensitive data to this file (like passwords)
11 * unless you really know what you're doing. If you do, any user that can
12 * run PHP or CGI on your webserver will be able to read them. If you still
13 * want to do this, make sure to properly secure the access to this file
14 * (also on the filesystem level).
18 * Server(s) configuration
21 // The $cfg['Servers'] array starts with $cfg['Servers'][1]. Do not use $cfg['Servers'][0].
22 // You can disable a server config entry by setting host to ''.
25 /* Authentication type */
26 $cfg['Servers'][$i]['auth_type'] = 'cookie';
27 /* Server parameters */
28 $cfg['Servers'][$i]['host'] = 'mysql';
29 $cfg['Servers'][$i]['connect_type'] = 'tcp';
30 //$cfg['Servers'][$i]['compress'] = false;
31 /* Select mysqli if your server has it */
32 //$cfg['Servers'][$i]['extension'] = 'mysql';
33 /* Optional: User for advanced features */
34 // $cfg['Servers'][$i]['controluser'] = 'pma';
35 // $cfg['Servers'][$i]['controlpass'] = 'pmapass';
36 /* Optional: Advanced phpMyAdmin features */
37 // $cfg['Servers'][$i]['pmadb'] = 'phpmyadmin';
38 // $cfg['Servers'][$i]['bookmarktable'] = 'pma_bookmark';
39 // $cfg['Servers'][$i]['relation'] = 'pma_relation';
40 // $cfg['Servers'][$i]['table_info'] = 'pma_table_info';
41 // $cfg['Servers'][$i]['table_coords'] = 'pma_table_coords';
42 // $cfg['Servers'][$i]['pdf_pages'] = 'pma_pdf_pages';
43 // $cfg['Servers'][$i]['column_info'] = 'pma_column_info';
44 // $cfg['Servers'][$i]['history'] = 'pma_history';
45 // $cfg['Servers'][$i]['designer_coords'] = 'pma_designer_coords';
46 $cfg['MaxRows'] = 200;
50 * End of servers configuration
54 * Directories for saving/loading files from server
56 $cfg['UploadDir'] = '';