source: branches/secondaryzones/dnsdb.conf@ 934

Last change on this file since 934 was 927, checked in by Kris Deugau, 2 weeks ago

/branches/secondaryzones

Add a pair of configuration options for tinydns export of secondary zones. See #86.

File size: 2.8 KB
RevLine 
[216]1# System-wide config for DNSDB
2
[670]3## Database connection info
[783]4#dbname = dsndb
5#dbuser = dnsdb
6#dbpass = dnsdbpwd
7#dbhost = dnsdbhost
[216]8
[670]9## Mail settings
[517]10#mailhost = smtp.example.com
11#mailnotify = dns@example.com
12#mailsender = hostmaster@example.com
13#mailname = Example Corp DNS Administrator
14#orgname = Example Corp
15#domain = example.com
[216]16
[670]17## session - note this is fed directly to CGI::Session
18## timeout supports (s)econds, (m)inutes, (h)ours, (d)ays, (w)eeks, (M)months, or (y)ears
[783]19#timeout = 3h
[517]20#sessiondir = /var/lib/dnsdb
[216]21
[670]22## Export caching
23# path for per-zone cache files for export
24#exportcache = /var/cache/dnsdb
25# always refresh the cache from the DB on export if 1/on
26# if 0/off, use the "changed" flag on a zone to determine if we export from
27# the DB or read from the existing cache file.
28#force_refresh = 1
29
[849]30## BIND export options
[901]31# Config fragment populated by exports from dnsadmin
32#bind_export_zone_conf = /var/named/zones.conf
33# Forward zone file path template
[849]34#bind_export_zone_path = /var/named/zones/%view/db.%zone
[901]35# Reverse zone file path template
36#bind_export_reverse_zone_path = /var/named/zones/%view/db.%zone
37# Export all hostnames as full dot-terminated FQDNs?
[857]38#bind_export_fqdn = 1
[891]39# Short TTL for "autoexpiry" of records. Values between 1 and 10 or so may
40# result in unresolveable names. 0 may be arbitrarily clamped to some saner
41# value by third party caches.
42#bind_export_autoexpire_ttl = 15
[849]43
[927]44## Secondary zone options
45#tiny_secondary_method = autoaxfr
46#autoaxfr_root = /var/lib/dns/autoaxfr
47
[670]48## DNS data template options
49# publish .0 IP when expanding a template pattern
50#template_skip_0 = 0
51# publish .255 IP when expanding a template pattern
52#template_skip_255 = 0
53
[517]54## misc
55
[216]56# flag to indicate if failed changes should be logged
[517]57#log_failures = 1
[670]58
[216]59# number of entries to display in lists
[783]60#perpage = 25
[517]61
[559]62# fold domain names and hostnames to lowercase?
63# strictly speaking, DNS is case-insensitive, but some people insist on Capital Letters anyway.
64#lowercase = 0
65
[583]66# Show formal .arpa zone name instead of the natural IP or CIDR for reverse zone names and records?
[798]67# Valid values are none, zone, record, or all
68#showrev_arpa = zone
[581]69
[708]70# Let DNS server autosplit long TXT records however it pleases, or hand-generate the split points?
71#autosplit = 1
[644]72
[559]73## General RPC options
74# may already be obsolete. how do we want to run RPC requests?
75# bare socket, plain HTTP, or standard XMLRPC?
76#rpcmode = http
77# maximum number of FCGI requests to serve before reloading/restarting FCGI
78#maxfcgi = 10
79
80## RPC ACL
[517]81# A comma-separated list starting with an abstract "system name"
82# (passed by an RPC caller), followed by a list of IP addresses
83# allowed to make RPC calls with that name.
84# Finer-grained access control must be handled by the caller.
85#rpc_iplist = billing, 192.168.0.11
86#rpc_iplist = billing, 172.12.12.12
87#rpc_iplist = custportal, 192.168.1.12, 192.168.1.13
Note: See TracBrowser for help on using the repository browser.