forked from khalahan/NamecoinToBind
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.php.dist
31 lines (21 loc) · 855 Bytes
/
config.php.dist
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?php
# Connection to a running namecoin node
$jsonConnect = 'http://user:pass@127.0.0.1:8336/';
# DNS server names which are authoritative for the .bit zone (the DNS servers you are building/configuring)
$authoritativeNS[] = array('my-dotbit-server.org', array('1.2.3.4', '1.2.3.5', '2001:5::1'));
# Use another template file
#$templateFile = dirname(__FILE__).'/zone-template-second.conf';
# Allowed namespaces
$zonesNamespace = array( 'd/' => 'bit', );
# Cache data to avoid generating zones each time
$cacheDir = dirname(__FILE__).'/cache/';
# Bind configuration files for the .bit zone
$bindZonesList = '/etc/bind/dotbit/';
# Bind zones for .bit domains
$bindZonesFiles= '/etc/bind/dotbit/zones/';
# Namecoin stat folder, leave empty to disable
#$statDir = dirname(__FILE__).'/stats/';
# Debug
$doFileWrites = true;
#$showErrors = true;
?>