DOCS: AdGuardHome feedback (#3701)

This commit is contained in:
Jeffrey Cafferata 2025-08-09 16:36:38 +02:00 committed by GitHub
parent 921f13e8ac
commit b2c88ac762
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -4,12 +4,12 @@ This is the provider for [AdGuardHome](https://github.com/AdguardTeam/AdGuardHom
This provider only supports the following record types.
* A
* AAAA
* CNAME
* ALIAS
* ADGUARDHOME_A_PASSTHROUGH
* ADGUARDHOME_AAAA_PASSTHROUGH
* [A](../language-reference/domain-modifiers/A.md)
* [AAAA](../language-reference/domain-modifiers/AAAA.md)
* [CNAME](../language-reference/domain-modifiers/CNAME.md)
* [ALIAS](../language-reference/domain-modifiers/ALIAS.md)
* [ADGUARDHOME_A_PASSTHROUGH](../language-reference/domain-modifiers/ADGUARDHOME_A_PASSTHROUGH.md)
* [ADGUARDHOME_AAAA_PASSTHROUGH](../language-reference/domain-modifiers/ADGUARDHOME_AAAA_PASSTHROUGH.md)
## Configuration
@ -36,6 +36,7 @@ Example:
{% endcode %}
## Usage
An example configuration:
{% code title="dnsconfig.js" %}
@ -43,7 +44,6 @@ An example configuration:
var REG_NONE = NewRegistrar("none");
var DSP_ADGUARDHOME = NewDnsProvider("adguard_home");
// Example domain where the CF proxy abides by the default (off).
D("example.com", REG_NONE, DnsProvider(DSP_ADGUARDHOME),
A("foo", "1.2.3.4"),
AAAA("another", "2003::1"),
@ -54,4 +54,3 @@ D("example.com", REG_NONE, DnsProvider(DSP_ADGUARDHOME),
);
```
{% endcode %}