da4790eaa1e8eefed48f969c879c32257442b79e
[matthijs/servers/drsnuggles.git] / etc / phpmyadmin / config.inc.php
1 <?php
2 /**
3  * Debian local configuration file
4  *
5  * This file overrides the settings made by phpMyAdmin interactive setup
6  * utility.
7  *
8  * For example configuration see /usr/share/doc/phpmyadmin/examples/config.default.php.gz
9  *
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).
15  */
16
17 /**
18  * Server(s) configuration
19  */
20 $i = 0;
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 ''.
23 $i++;
24
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
47 /*
48  * End of servers configuration
49  */
50
51 /*
52  * Directories for saving/loading files from server
53  */
54 $cfg['UploadDir'] = '';
55 $cfg['SaveDir'] = '';
56
57