Translated using Weblate (Dutch)
[phpmyadmin.git] / examples / config.manyhosts.inc.php
blobb9ea89306d00941269118071bb200779bcb6613a
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.
8 * @package PhpMyAdmin
9 * @subpackage Example
11 declare(strict_types=1);
13 $i = 0;
14 $hosts = [
15 "foo.example.com",
16 "bar.example.com",
17 "baz.example.com",
18 "quux.example.com",
21 foreach ($hosts as $host) {
22 $i++;
23 $cfg['Servers'][$i]['host'] = $host;
24 $cfg['Servers'][$i]['port'] = '';
25 $cfg['Servers'][$i]['socket'] = '';
26 $cfg['Servers'][$i]['compress'] = false;
27 $cfg['Servers'][$i]['controluser'] = 'pma';
28 $cfg['Servers'][$i]['controlpass'] = 'pmapass';
29 $cfg['Servers'][$i]['auth_type'] = 'cookie';
30 $cfg['Servers'][$i]['user'] = '';
31 $cfg['Servers'][$i]['password'] = '';
32 $cfg['Servers'][$i]['only_db'] = '';
33 $cfg['Servers'][$i]['verbose'] = '';
34 $cfg['Servers'][$i]['pmadb'] = 'phpmyadmin';
35 $cfg['Servers'][$i]['bookmarktable'] = 'pma__bookmark';
36 $cfg['Servers'][$i]['relation'] = 'pma__relation';
37 $cfg['Servers'][$i]['table_info'] = 'pma__table_info';
38 $cfg['Servers'][$i]['table_coords'] = 'pma__table_coords';
39 $cfg['Servers'][$i]['pdf_pages'] = 'pma__pdf_pages';
40 $cfg['Servers'][$i]['column_info'] = 'pma__column_info';
41 $cfg['Servers'][$i]['history'] = 'pma__history';
42 $cfg['Servers'][$i]['table_uiprefs'] = 'pma__table_uiprefs';
43 $cfg['Servers'][$i]['tracking'] = 'pma__tracking';
44 $cfg['Servers'][$i]['userconfig'] = 'pma__userconfig';
45 $cfg['Servers'][$i]['recent'] = 'pma__recent';
46 $cfg['Servers'][$i]['users'] = 'pma__users';
47 $cfg['Servers'][$i]['usergroups'] = 'pma__usergroups';
48 $cfg['Servers'][$i]['navigationhiding'] = 'pma__navigationhiding';
49 $cfg['Servers'][$i]['savedsearches'] = 'pma__savedsearches';
50 $cfg['Servers'][$i]['central_columns'] = 'pma__central_columns';
51 $cfg['Servers'][$i]['designer_settings'] = 'pma__designer_settings';
52 $cfg['Servers'][$i]['export_templates'] = 'pma__export_templates';