diff options
Diffstat (limited to 'distro/common/kresd.conf')
-rw-r--r-- | distro/common/kresd.conf | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/distro/common/kresd.conf b/distro/common/kresd.conf new file mode 100644 index 0000000..a82a893 --- /dev/null +++ b/distro/common/kresd.conf @@ -0,0 +1,19 @@ +-- vim:syntax=lua: +-- Refer to manual: http://knot-resolver.readthedocs.org/en/latest/daemon.html#configuration + +-- Load useful modules +modules = { + 'hints > iterate', -- Load /etc/hosts and allow custom root hints + 'stats', -- Track internal statistics + 'predict', -- Prefetch expiring/frequent records +} + +-- See kresd.systemd(7) about configuring network interfaces when using systemd +-- Listen on localhost (default) +-- net = { '127.0.0.1', '::1' } + +-- Enable DNSSEC validation +trust_anchors.file = '/etc/knot-resolver/root.keys' + +-- Cache size +cache.size = 100 * MB |