From 1efe4a07f88e7ede3549e8a2c30a037429bd10ed Mon Sep 17 00:00:00 2001 From: creme Date: Wed, 17 Nov 2021 11:56:34 +0100 Subject: [PATCH] add ubound resolver example for DoT --- docs/index.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/docs/index.md b/docs/index.md index 9a566da..5adb61e 100644 --- a/docs/index.md +++ b/docs/index.md @@ -91,3 +91,20 @@ members can be use your email credantials for login. (*user@envs.net* | *your em **ip:** `5.199.130.141` **port:** `853` **tls_pubkey_pinset:** `TknTKtNi/lhE270MszuUQlgqk1HnGcUXFAgXSXURD7k=` _(**digest:** `sha256`)_ + +##### example unbound config (`/etc/unbound/unbound.conf`) +``` +include-toplevel: "/etc/unbound/unbound.conf.d/*.conf" + +server: + verbosity: 2 + tls-cert-bundle: /etc/ssl/certs/ca-certificates.crt + interface: 127.0.0.1 + access-control: 127.0.0.0/8 allow + +forward-zone: + name: "." + forward-tls-upstream: yes + + forward-addr: 5.199.130.141@853#dns.envs.net +```