You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
532 B
33 lines
532 B
## |
|
## knot.conf -- Knot DNS Server Configuration |
|
## |
|
|
|
system { |
|
identity "KNOT DNS"; |
|
storage "@l_prefix@/var/knot/zones"; |
|
pidfile "@l_prefix@/var/knot/run/knot.pid"; |
|
workers 1; |
|
user @l_rusr@.@l_rgrp@; |
|
} |
|
|
|
interfaces { |
|
ipv4 { |
|
address 127.0.0.1; |
|
port 5353; |
|
} |
|
} |
|
|
|
zones { |
|
example.com { |
|
file "@l_prefix@/etc/knot/zones/example.com"; |
|
} |
|
} |
|
|
|
log { |
|
file "@l_prefix@/var/knot/log/knot.log" { |
|
any warning, error; |
|
zone warning, notice; |
|
server info; |
|
} |
|
} |
|
|
|
|