diff options
Diffstat (limited to 'samples/knot.sample.conf.in')
-rw-r--r-- | samples/knot.sample.conf.in | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/samples/knot.sample.conf.in b/samples/knot.sample.conf.in new file mode 100644 index 0000000..e535757 --- /dev/null +++ b/samples/knot.sample.conf.in @@ -0,0 +1,46 @@ +# This is a sample of a minimal configuration file for Knot DNS. +# See knot.conf(5) or refer to the server documentation. + +server: + rundir: "@run_dir@" + user: knot:knot + listen: [ 127.0.0.1@53, ::1@53 ] + +log: + - target: syslog + any: info + +database: + storage: "@storage_dir@" + +remote: +# - id: secondary +# address: 192.168.1.1@53 +# +# - id: primary +# address: 192.168.2.1@53 + +acl: +# - id: acl_secondary +# address: 192.168.1.1 +# action: transfer + +# - id: acl_primary +# address: 192.168.2.1 +# action: notify + +template: + - id: default + storage: "@storage_dir@" + file: "%s.zone" + +zone: +# # Primary zone +# - domain: example.com +# notify: secondary +# acl: acl_secondary + +# # Secondary zone +# - domain: example.net +# master: primary +# acl: acl_primary |