Files
luci/applications/luci-app-https-dns-proxy/root/usr/share/https-dns-proxy/providers/recipes.v.json
Stan Grishin 60b1eac5a4 luci-app-https-dns-proxy: update to 2025.12.29-4
This commit adds support for:
* new unified provider.json support to save space compared to individual
  provider json files
* new v.recipes provider (thanks @morytyann!)
* functional testing
* minor js/shell code improvements

Signed-off-by: Stan Grishin <stangri@melmac.ca>
2026-03-03 17:44:02 -08:00

37 lines
686 B
JSON

{
"title": "v.recipes",
"template": "https://v.recipes/dns-{option}",
"bootstrap_dns": "1.1.1.1,1.0.0.1,8.8.8.8,8.8.4.4",
"help_link": "https://v.recipes/dns/",
"params": {
"option": {
"description": "Variant",
"type": "select",
"regex": "(query|security|adblock|ecs|cn)",
"options": [
{
"value": "query",
"description": "Unfiltered"
},
{
"value": "security",
"description": "Security"
},
{
"value": "adblock",
"description": "Adblock"
},
{
"value": "ecs",
"description": "ECS Optimized"
},
{
"value": "cn",
"description": "CN Optimized"
}
],
"default": "query"
}
}
}