maradns: Add configuration for authoritive-only mode.
[matthijs/servers/drsnuggles.git] / etc / maradns / mararc
1 # This file configures maradns to be an authoritive-only dns server, running on
2 # a non-standard port.
3 #
4 # See /usr/share/doc/maradns/en/examples/example_full_mararc.gz or mararc(5)
5 # for more info.
6
7 # Initialize this variable
8 csv2 = {}
9
10 # Load the zone files
11 #csv2["domain.tld."] = "db.domain.tld."
12
13 # The address this DNS server runs on.  If you want to bind
14 # to all addresses a given machine has, use "0.0.0.0".
15 bind_address = "127.0.0.1"
16
17 # Run on a non-standard port, so another recursive resolver can run on port 53.
18 # We will be portforwarded anyway, so this doesn't matter.
19 dns_port = 54
20
21 # The directory with all of the zone files
22 chroot_dir = "/data/db/dns"
23
24 # Run as user / group maradns
25 maradns_uid = 104
26 maradns_gid = 104
27
28 # The number of messages we log to stdout
29 # 0: No messages except for fatal parsing errors and the legal disclaimer
30 # 1: Only startup messages logged (default)
31 # 2: Error queries logged
32 # 3: All queries logged (but not very verbosely right now)
33 verbose_level = 1
34
35 # Don't show the (long) disclaimer in syslog
36 hide_disclaimer = "yes"