Files
luci/applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/com.adguard.dns.json
T
Stan Grishin 8f92f8b403 luci-app-https-dns-proxy: bugfix: AdGuard servers URLs
AdGuard seems to have drastically changed their DoH servers URLs, so this change updates
the root/usr/share/https-dns-proxy/providers/com.adguard.dns.json file.
Fixes https://github.com/openwrt/luci/issues/7038

Also include minor Makefile changes for better menuconfig presence.

Signed-off-by: Stan Grishin <stangri@melmac.ca>
2024-04-03 20:07:26 +00:00

29 lines
593 B
JSON

{
"title": "AdGuard",
"template": "https://{option}.adguard-dns.com/dns-query",
"bootstrap_dns": "94.140.14.140,94.140.14.141",
"help_link": "https://adguard-dns.io/en/public-dns.html",
"params": {
"option": {
"description": "Variant",
"type": "select",
"regex": "(dns|unfiltered|family)",
"options": [
{
"value": "dns",
"description": "Default (Blocks ads and trackers)"
},
{
"value": "unfiltered",
"description": "Unfiltered"
},
{
"value": "family",
"description": "Family Filter"
}
],
"default": "dns"
}
}
}