8
+ − 1
<?php
+ − 2
47
+ − 3
/* PowerAdmin, a friendly web-based admin tool for PowerDNS.
+ − 4
* See <https://rejo.zenger.nl/poweradmin> for more details.
+ − 5
*
+ − 6
* Copyright 2007, 2008 Rejo Zenger <rejo@zenger.nl>
+ − 7
*
+ − 8
* This program is free software: you can redistribute it and/or modify
+ − 9
* it under the terms of the GNU General Public License as published by
+ − 10
* the Free Software Foundation, either version 3 of the License, or
+ − 11
* (at your option) any later version.
+ − 12
*
+ − 13
* This program is distributed in the hope that it will be useful,
+ − 14
* but WITHOUT ANY WARRANTY; without even the implied warranty of
+ − 15
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ − 16
* GNU General Public License for more details.
+ − 17
*
+ − 18
* You should have received a copy of the GNU General Public License
+ − 19
* along with this program. If not, see <http://www.gnu.org/licenses/>.
+ − 20
*/
+ − 21
8
+ − 22
/* Edit all fields below here to your information */
+ − 23
+ − 24
/* MySQL Configuration */
+ − 25
+ − 26
//
+ − 27
// Host we should connect to.
+ − 28
// This could be for example "localhost" or a sock file
+ − 29
$dbhost = 'localhost' ;
+ − 30
+ − 31
//
+ − 32
// Your user with SELECT/INSERT/UPDATE/DELETE/CREATE access to $dbdatabase
+ − 33
$dbuser = '' ;
+ − 34
+ − 35
//
10
+ − 36
// Your password, the password for $dbuser
8
+ − 37
$dbpass = '' ;
+ − 38
+ − 39
// Your database, the database you want to use for PowerDNS (or are already using)
+ − 40
$dbdatabase = '' ;
+ − 41
+ − 42
// The dsn you want to use (which database you want to use)
+ − 43
// Tested is mysql and pgsql default is mysql
+ − 44
$dbdsntype = 'mysql' ;
+ − 45
+ − 46
/* URI Configuration */
+ − 47
+ − 48
// $BASE_URL
+ − 49
// This will be the main URI you will use to connect to PowerAdmin.
+ − 50
// For instance: "http://poweradmin.sjeemz.nl"
+ − 51
$BASE_URL = "http://" ;
+ − 52
+ − 53
// $BASE_PATH
+ − 54
// If PowerAdmin is in a subdir. Specify this here
+ − 55
// For instance: "/admin/"
+ − 56
$BASE_PATH = "/admin/" ;
+ − 57
13
+ − 58
// $LANG
+ − 59
// Which language should be used for the web interface?
+ − 60
$LANG = "en_EN" ;
+ − 61
+ − 62
// $STYLE
+ − 63
// Define skin of web frontend. This should be the basename of the CSS file that
+ − 64
// will be included, it will be used like: "style/$STYLE.css.php".
+ − 65
$STYLE = "example" ;
8
+ − 66
+ − 67
/* DNS Record information */
+ − 68
+ − 69
+ − 70
// $HOSTMASTER
+ − 71
// The email address of the hostmaster you want to be mailed.
+ − 72
// For instance: "hostmaster@sjeemz.nl"
+ − 73
$HOSTMASTER = "" ;
+ − 74
+ − 75
// $NS1
+ − 76
// Your first nameserver
+ − 77
// Should be a domainname! Not an IP.
+ − 78
$NS1 = "" ;
+ − 79
+ − 80
// $NS2
+ − 81
// Your second nameserver.
+ − 82
// If you dont have a second nameserver, fill in the same value as $NS1
+ − 83
$NS2 = "" ;
+ − 84
+ − 85
/* You dont have to edit these fields. Change them if you want. */
+ − 86
+ − 87
+ − 88
// $EXPIRE
+ − 89
// Session timeout in seconds. This is 1800 seconds which is 30 minutes by default.
+ − 90
// The information in this field should be in seconds.
+ − 91
// After this $EXPIRE you are automatically logged out from the system.
+ − 92
$EXPIRE = 1800 ;
+ − 93
+ − 94
// $ALLOW_SOA_EDIT
+ − 95
// Allow users with level 1 to edit/delete SOA records?
+ − 96
$ALLOW_SOA_EDIT = 0 ;
+ − 97
+ − 98
// $ALLOW_NS_EDIT
+ − 99
// Allow users with level 1 to edit/delete pre-set NS records for their domain.
+ − 100
$ALLOW_NS_EDIT = 1 ;
+ − 101
+ − 102
// $DEFAULT_TTL
+ − 103
// Default TTL for records.
+ − 104
// Default time to live for all records. This notation is in seconds.
23
+ − 105
$DEFAULT_TTL = 86400 ; // (3600 seconds / 1 hour by default)
8
+ − 106
+ − 107
+ − 108
// $NAME_LEVEL_X
+ − 109
// These directives allow you to change the statusnames of users on the system.
+ − 110
$NAME_LEVEL_1 = _ ( 'Normal user' );
+ − 111
$NAME_LEVEL_5 = _ ( 'Administrator' );
+ − 112
$NAME_LEVEL_10 = _ ( 'Administrator w/ user admin rights' );
+ − 113
+ − 114
// Enable fancy records or not (http://doc.powerdns.com/fancy-records.html)? true/false
+ − 115
$FANCY_RECORDS = true ;
+ − 116
+ − 117
+ − 118
/* ------------------------------------------ */
+ − 119
/* No need to make changes below this line... */
+ − 120
/* Which means, dont touch it */
+ − 121
/* ------------------------------------------ */
+ − 122
+ − 123
/* -------------------------------------------------------------------- */
+ − 124
/* NO REALLY DONT TOUCH IT! Unless you _REALLY_ know what you are doing */
+ − 125
/* -------------------------------------------------------------------- */
+ − 126
+ − 127
// $rtypes - array of possible record types
+ − 128
$rtypes = array ( 'A' , 'AAAA' , 'CNAME' , 'HINFO' , 'MX' , 'NAPTR' , 'NS' , 'PTR' , 'SOA' , 'TXT' );
+ − 129
+ − 130
// If fancy records is enabled, extend this field.
+ − 131
if ( $FANCY_RECORDS )
+ − 132
{
+ − 133
$rtypes [ 10 ] = 'URL' ;
+ − 134
$rtypes [ 11 ] = 'MBOXFW' ;
+ − 135
}
+ − 136
+ − 137
// $template - array of records that will be applied when adding a new zone file
+ − 138
$template = array (
+ − 139
array (
+ − 140
+ − 141
"name" => "##DOMAIN##" ,
+ − 142
"type" => "SOA" ,
+ − 143
"content" => " $NS1 $HOSTMASTER 1" ,
+ − 144
"ttl" => " $DEFAULT_TTL " ,
+ − 145
"prio" => ""
+ − 146
),
+ − 147
array (
+ − 148
"name" => "##DOMAIN##" ,
+ − 149
"type" => "NS" ,
+ − 150
"content" => " $NS1 " ,
+ − 151
"ttl" => " $DEFAULT_TTL " ,
+ − 152
"prio" => ""
+ − 153
),
+ − 154
array (
+ − 155
"name" => "##DOMAIN##" ,
+ − 156
"type" => "NS" ,
+ − 157
"content" => " $NS2 " ,
+ − 158
"ttl" => " $DEFAULT_TTL " ,
+ − 159
"prio" => ""
+ − 160
),
+ − 161
array (
+ − 162
"name" => "www.##DOMAIN##" ,
+ − 163
"type" => "A" ,
+ − 164
"content" => "##WEBIP##" ,
+ − 165
"ttl" => " $DEFAULT_TTL " ,
+ − 166
"prio" => ""
+ − 167
),
+ − 168
array (
+ − 169
"name" => "##DOMAIN##" ,
+ − 170
"type" => "A" ,
+ − 171
"content" => "##WEBIP##" ,
+ − 172
"ttl" => " $DEFAULT_TTL " ,
+ − 173
"prio" => ""
+ − 174
),
+ − 175
array (
+ − 176
"name" => "mail.##DOMAIN##" ,
+ − 177
"type" => "A" ,
+ − 178
"content" => "##MAILIP##" ,
+ − 179
"ttl" => " $DEFAULT_TTL " ,
+ − 180
"prio" => ""
+ − 181
),
+ − 182
array (
+ − 183
"name" => "localhost.##DOMAIN##" ,
+ − 184
"type" => "A" ,
+ − 185
"content" => "127.0.0.1" ,
+ − 186
"ttl" => " $DEFAULT_TTL " ,
+ − 187
"prio" => ""
+ − 188
),
+ − 189
array (
+ − 190
"name" => "##DOMAIN##" ,
+ − 191
"type" => "MX" ,
+ − 192
"content" => "mail.##DOMAIN##" ,
+ − 193
"ttl" => " $DEFAULT_TTL " ,
+ − 194
"prio" => "10"
+ − 195
)
+ − 196
);
+ − 197
?>