From ec5fbc91f8a04e89b0204aa54e90fe269959e1f6 Mon Sep 17 00:00:00 2001 From: Sheogorath <sheogorath@shivering-isles.com> Date: Sat, 30 Apr 2022 04:29:23 +0200 Subject: [PATCH] fix(dns): Use different upstream server This patch changes the upstream server to quad9, as it seems that dnsproxy doesn't support SNI for DoH or DoT Servers. --- apps/k8s01/dns/dns.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/k8s01/dns/dns.yaml b/apps/k8s01/dns/dns.yaml index 899a23706..e688044c1 100644 --- a/apps/k8s01/dns/dns.yaml +++ b/apps/k8s01/dns/dns.yaml @@ -20,8 +20,8 @@ spec: image: quay.io/sheogorath/dnsproxy:0.42.2 args: - /dnsproxy - - --upstream=https://dns.shivering-isles.com/dns-query - - --bootstrap=1.1.1.1 + - --upstream=https://dns.quad9.net/dns-query + - --bootstrap=9.9.9.9 - --cache-min-ttl=300 - --cache-optimistic ports: -- GitLab