21 lines
469 B
YAML
21 lines
469 B
YAML
|
|
---
|
||
|
|
version: 1.1
|
||
|
|
dns_over_https: # DNS over HTTPS
|
||
|
|
|
||
|
|
enable_dns_over_https: false # Enable DNS over HTTPS
|
||
|
|
|
||
|
|
provider:
|
||
|
|
description: Use Provider
|
||
|
|
choices:
|
||
|
|
- Cloudflare
|
||
|
|
- NextDNS
|
||
|
|
- Custom
|
||
|
|
default: Cloudflare
|
||
|
|
disabled:
|
||
|
|
type: jinja
|
||
|
|
jinja: |
|
||
|
|
{% if not _.enable_dns_over_https %}
|
||
|
|
Enable DNS over HTTPS is False
|
||
|
|
{% endif %}
|
||
|
|
description: if "proxy.dns_over_https.enable_dns_over_https" is not False
|