Translated using Weblate (Portuguese)
[phpmyadmin.git] / examples / config.manyhosts.inc.php
blobc9022d3462ee6c766ba1cf549e018d8ee7fe7baf
1 <?php
2 /**
3 * This example configuration shows how to configure phpMyAdmin for
4 * many hosts that all have identical configuration otherwise. To add
5 * a new host, just drop it into $hosts below. Contributed by
6 * Matthew Hawkins.
7 */
9 declare(strict_types=1);
11 $i = 0;
12 $hosts = ['foo.example.com', 'bar.example.com', 'baz.example.com', 'quux.example.com'];
14 foreach ($hosts as $host) {
15 $i++;
16 $cfg['Servers'][$i]['host'] = $host;
17 $cfg['Servers'][$i]['port'] = '';
18 $cfg['Servers'][$i]['socket'] = '';
19 $cfg['Servers'][$i]['compress'] = false;
20 $cfg['Servers'][$i]['controluser'] = 'pma';
21 $cfg['Servers'][$i]['controlpass'] = 'pmapass';
22 $cfg['Servers'][$i]['auth_type'] = 'cookie';
23 $cfg['Servers'][$i]['user'] = '';
24 $cfg['Servers'][$i]['password'] = '';
25 $cfg['Servers'][$i]['only_db'] = '';
26 $cfg['Servers'][$i]['verbose'] = '';
27 $cfg['Servers'][$i]['pmadb'] = 'phpmyadmin';
28 $cfg['Servers'][$i]['bookmarktable'] = 'pma__bookmark';
29 $cfg['Servers'][$i]['relation'] = 'pma__relation';
30 $cfg['Servers'][$i]['table_info'] = 'pma__table_info';
31 $cfg['Servers'][$i]['table_coords'] = 'pma__table_coords';
32 $cfg['Servers'][$i]['pdf_pages'] = 'pma__pdf_pages';
33 $cfg['Servers'][$i]['column_info'] = 'pma__column_info';
34 $cfg['Servers'][$i]['history'] = 'pma__history';
35 $cfg['Servers'][$i]['table_uiprefs'] = 'pma__table_uiprefs';
36 $cfg['Servers'][$i]['tracking'] = 'pma__tracking';
37 $cfg['Servers'][$i]['userconfig'] = 'pma__userconfig';
38 $cfg['Servers'][$i]['recent'] = 'pma__recent';
39 $cfg['Servers'][$i]['users'] = 'pma__users';
40 $cfg['Servers'][$i]['usergroups'] = 'pma__usergroups';
41 $cfg['Servers'][$i]['navigationhiding'] = 'pma__navigationhiding';
42 $cfg['Servers'][$i]['savedsearches'] = 'pma__savedsearches';
43 $cfg['Servers'][$i]['central_columns'] = 'pma__central_columns';
44 $cfg['Servers'][$i]['designer_settings'] = 'pma__designer_settings';
45 $cfg['Servers'][$i]['export_templates'] = 'pma__export_templates';