From d56f8fab9707338f7cd4c87287913061b7b89efa Mon Sep 17 00:00:00 2001 From: Tomas Krizek Date: Mon, 22 Nov 2021 17:55:19 +0100 Subject: [PATCH] config: properly document loading of hints module --- ci/respdiff/kresd.config | 2 +- etc/config/config.cluster | 2 +- etc/config/config.personal | 2 +- etc/config/config.splitview | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ci/respdiff/kresd.config b/ci/respdiff/kresd.config index 6a26cabc3..2b7b218cb 100644 --- a/ci/respdiff/kresd.config +++ b/ci/respdiff/kresd.config @@ -15,7 +15,7 @@ modules = { 'workarounds < iterate', 'policy', -- Block queries to local zones/bad sites 'view', -- Views for certain clients - 'hints', -- Load /etc/hosts and allow custom root hints + 'hints > iterate', -- Allow loading /etc/hosts or custom root hints 'stats', -- Track internal statistics } diff --git a/etc/config/config.cluster b/etc/config/config.cluster index dd10a7470..3bd12dd28 100644 --- a/etc/config/config.cluster +++ b/etc/config/config.cluster @@ -19,7 +19,7 @@ cache.size = 16 * GB -- Load Useful modules modules = { - 'hints > iterate', -- Load /etc/hosts and allow custom root hints + 'hints > iterate', -- Allow loading /etc/hosts or custom root hints 'stats', -- Track internal statistics graphite = { -- Send statistics to local InfluxDB -- Address of the Graphite/InfluxDB server diff --git a/etc/config/config.personal b/etc/config/config.personal index e6803a1c7..961a2f660 100644 --- a/etc/config/config.personal +++ b/etc/config/config.personal @@ -12,7 +12,7 @@ net.listen('::1', 853, { kind = 'tls', freebind = true }) -- Load useful modules modules = { - 'hints > iterate', -- Load /etc/hosts and allow custom root hints + 'hints > iterate', -- Allow loading /etc/hosts or custom root hints 'stats', -- Track internal statistics 'predict', -- Prefetch expiring/frequent records } diff --git a/etc/config/config.splitview b/etc/config/config.splitview index 1054af5a7..a8a934481 100644 --- a/etc/config/config.splitview +++ b/etc/config/config.splitview @@ -13,7 +13,7 @@ net.listen('::1', 443, { kind = 'doh2' }) -- Load Useful modules modules = { - 'hints > iterate', -- Load /etc/hosts and allow custom root hints + 'hints > iterate', -- Allow loading /etc/hosts or custom root hints 'stats', -- Track internal statistics graphite = { -- Send statistics to local InfluxDB -- Address of the Graphite/InfluxDB server -- 2.47.2