From 090fc917fb4dd18c5de457d9873499c98cf59098 Mon Sep 17 00:00:00 2001 From: rnhmjoj Date: Sun, 5 May 2024 18:31:57 +0200 Subject: [PATCH] fix random dnscrypt timeouts --- nameserver.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nameserver.nix b/nameserver.nix index 52f9e6c..f369c6d 100644 --- a/nameserver.nix +++ b/nameserver.nix @@ -39,7 +39,8 @@ { name = "tls"; host = "localhost"; port= "443"; } # Send DNSCrypt to dnscrypt-wrapper (TCP or UDP) { name = "anyprot"; host = "localhost"; port = "5353"; } - { name = "anyprot"; host = "localhost"; port = "5353"; is_udp = true; } + { name = "anyprot"; host = "localhost"; port = "5353"; + is_udp = true; udp_timeout = 100; } ]; };