diff options
author | Stan <stangri@melmac.net> | 2020-07-31 02:52:57 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-31 02:52:57 -0700 |
commit | 5e79fc42a30f47e8cca8bb15178c2de93b6d0cdb (patch) | |
tree | 4d192d355bad6392bbc48c0bb26647bc10ad7eb8 | |
parent | 8f54db8cc34c1ef1b8c4a2c691f69e0df13bfde9 (diff) | |
parent | fbe7af365583edc9d26e92d5540abc493bb40741 (diff) |
Merge pull request #4317 from stangri/master-luci-app-https-dns-proxy
luci-app-https-dns-proxy: fix bootstrap_dns for cloudflare security
-rw-r--r-- | applications/luci-app-https-dns-proxy/Makefile | 2 | ||||
-rw-r--r-- | applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.cloudflare-dns.security.lua | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/applications/luci-app-https-dns-proxy/Makefile b/applications/luci-app-https-dns-proxy/Makefile index 097f93b64..6ce17ecbc 100644 --- a/applications/luci-app-https-dns-proxy/Makefile +++ b/applications/luci-app-https-dns-proxy/Makefile @@ -10,7 +10,7 @@ LUCI_TITLE:=DNS Over HTTPS Proxy Web UI LUCI_DESCRIPTION:=Provides Web UI for DNS Over HTTPS Proxy LUCI_DEPENDS:=+luci-compat +luci-mod-admin-full +https-dns-proxy LUCI_PKGARCH:=all -PKG_RELEASE:=10 +PKG_RELEASE:=11 include ../../luci.mk diff --git a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.cloudflare-dns.security.lua b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.cloudflare-dns.security.lua index a862f438b..d80b4cf5b 100644 --- a/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.cloudflare-dns.security.lua +++ b/applications/luci-app-https-dns-proxy/luasrc/https-dns-proxy/providers/com.cloudflare-dns.security.lua @@ -2,7 +2,7 @@ return { name = "Cloudflare-Security", label = _("Cloudflare (Security Protection)"), resolver_url = "https://security.cloudflare-dns.com/dns-query", - bootstrap_dns = "1.1.1.1,1.0.0.1,2606:4700:4700::1111,2606:4700:4700::1001", + bootstrap_dns = "1.1.1.2,1.0.0.2,2606:4700:4700::1112,2606:4700:4700::1002", help_link = "https://one.one.one.one/family/", help_link_text = "Cloudflare" } |