summaryrefslogtreecommitdiff
path: root/samples/knot.min.conf
blob: 6b7c1af1d16541e07fc9cae7c860222226cb2fb1 (plain)
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
#
# knot.min.conf
#
# This is a sample of a minimal configuration file for Knot DNS.
#
# For exhaustive list of all options see samples/knot.full.conf
# in the source directory or refer to user manual.
#

system {
  identity "Knot DNS minimal configuration";
  storage "/tmp/knot-minimal";
}

interfaces {
  ipv4 { address 127.0.0.1@53533; }
}

zones {
  example.com {  
    file "samples/example.com.zone"; 
  }
}

log {
  stdout { any info, notice; }
  stderr { any debug, warning, error; }
  syslog {}
  file "/tmp/knot-minimal/knotd.log" { any all; }
}