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