summaryrefslogtreecommitdiff
path: root/samples/knot.min.conf
diff options
context:
space:
mode:
Diffstat (limited to 'samples/knot.min.conf')
-rw-r--r--samples/knot.min.conf30
1 files changed, 30 insertions, 0 deletions
diff --git a/samples/knot.min.conf b/samples/knot.min.conf
new file mode 100644
index 0000000..f9bc29c
--- /dev/null
+++ b/samples/knot.min.conf
@@ -0,0 +1,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.
+#
+
+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; }
+}