equal
deleted
inserted
replaced
24 // Tested is mysql and pgsql default is mysql |
24 // Tested is mysql and pgsql default is mysql |
25 $dbdsntype = 'mysql'; |
25 $dbdsntype = 'mysql'; |
26 |
26 |
27 /* URI Configuration */ |
27 /* URI Configuration */ |
28 |
28 |
29 |
|
30 // $BASE_URL |
29 // $BASE_URL |
31 // This will be the main URI you will use to connect to PowerAdmin. |
30 // This will be the main URI you will use to connect to PowerAdmin. |
32 // For instance: "http://poweradmin.sjeemz.nl" |
31 // For instance: "http://poweradmin.sjeemz.nl" |
33 $BASE_URL = "http://"; |
32 $BASE_URL = "http://"; |
34 |
33 |
35 // $BASE_PATH |
34 // $BASE_PATH |
36 // If PowerAdmin is in a subdir. Specify this here |
35 // If PowerAdmin is in a subdir. Specify this here |
37 // For instance: "/admin/" |
36 // For instance: "/admin/" |
38 $BASE_PATH = "/admin/"; |
37 $BASE_PATH = "/admin/"; |
39 |
38 |
|
39 // $LANG |
|
40 // Which language should be used for the web interface? |
|
41 $LANG = "en_EN"; |
|
42 |
|
43 // $STYLE |
|
44 // Define skin of web frontend. This should be the basename of the CSS file that |
|
45 // will be included, it will be used like: "style/$STYLE.css.php". |
|
46 $STYLE = "example"; |
40 |
47 |
41 /* DNS Record information */ |
48 /* DNS Record information */ |
42 |
49 |
43 |
50 |
44 // $HOSTMASTER |
51 // $HOSTMASTER |
85 $NAME_LEVEL_5 = _('Administrator'); |
92 $NAME_LEVEL_5 = _('Administrator'); |
86 $NAME_LEVEL_10 = _('Administrator w/ user admin rights'); |
93 $NAME_LEVEL_10 = _('Administrator w/ user admin rights'); |
87 |
94 |
88 // Enable fancy records or not (http://doc.powerdns.com/fancy-records.html)? true/false |
95 // Enable fancy records or not (http://doc.powerdns.com/fancy-records.html)? true/false |
89 $FANCY_RECORDS = true; |
96 $FANCY_RECORDS = true; |
90 |
|
91 // Master or slave functionality. Set this to either true or false. |
|
92 // This field indicates if you are running in a MASTER/SLAVE setup or in a NATIVE setup. |
|
93 // By toggling this function you will get some more selection features. |
|
94 // Default is false. |
|
95 // Use these features with care, they havent been tested much yet. |
|
96 $MASTER_SLAVE_FUNCTIONS = false; |
|
97 |
97 |
98 |
98 |
99 /* ------------------------------------------ */ |
99 /* ------------------------------------------ */ |
100 /* No need to make changes below this line... */ |
100 /* No need to make changes below this line... */ |
101 /* Which means, dont touch it */ |
101 /* Which means, dont touch it */ |