~ubuntu-branches/ubuntu/quantal/maradns/quantal

« back to all changes in this revision

Viewing changes to doc/pt_br/source/example_auth_mararc

  • Committer: Package Import Robot
  • Author(s): Iain Lane
  • Date: 2012-01-12 23:35:38 UTC
  • mto: This revision was merged to the branch mainline in revision 26.
  • Revision ID: package-import@ubuntu.com-20120112233538-5jkaqrh9nbqtf1ey
Tags: upstream-2.0.04+really1.4.09
ImportĀ upstreamĀ versionĀ 2.0.04+really1.4.09

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Example simplified mararc file.  
 
2
# This only shows a subset of MaraDNS' features needed to be an
 
3
# authoritative name server; see the file example_full_mararc for a
 
4
# mararc file that uses most of the parameters that can be set in a 
 
5
# mararc file.
 
6
 
 
7
# The address this DNS server runs on.  If you want to bind 
 
8
# to multiple addresses, separate them with a comma like this:
 
9
# "10.1.2.3,10.1.2.4,127.0.0.1"
 
10
ipv4_bind_addresses = "127.0.0.1"
 
11
# The directory with all of the zone files
 
12
chroot_dir = "/etc/maradns"
 
13
 
 
14
# The various zones we support
 
15
 
 
16
# We must initialize the csv2 hash, or MaraDNS will not
 
17
# load any zone files
 
18
csv2 = {}
 
19
 
 
20
# Here is a pointer to a zone file for example.com
 
21
csv2["example.com."] = "db.example.com"
 
22
# And a pointer to a zone file for example.org
 
23
csv2["example.org."] = "db.example.org"
 
24