diff --git a/AdGuardHome.yaml b/AdGuardHome.yaml index f8475f5..f672c2e 100644 --- a/AdGuardHome.yaml +++ b/AdGuardHome.yaml @@ -1,5 +1,6 @@ bind_host: 0.0.0.0 bind_port: 80 +beta_bind_port: 0 users: - name: homeadguard password: $2y$10$/NwRxjsTFpMyyJGrnrDgZ.BjS1lJtq6Yuu0Y1yJNPs4BO4MZMxZli @@ -18,7 +19,7 @@ dns: querylog_size_memory: 1000 anonymize_client_ip: false protection_enabled: true - blocking_mode: default + blocking_mode: refused blocking_ipv4: "" blocking_ipv6: "" blocked_response_ttl: 10 @@ -29,10 +30,7 @@ dns: refuse_any: true upstream_dns: - tls://1.1.1.1 #Cloudflare Public DNS - - https://dns.cloudflare.com/dns-query #Cloudflare Public DNS - - https://doh.opendns.com/dns-query #Cisco Open DNS - tls://dns10.quad9.net #Quad9 DNS - - https://dns10.quad9.net/dns-query #Quad9 DNS upstream_dns_file: "" bootstrap_dns: - '1.1.1.1' #Cloudflare Public DNS @@ -51,7 +49,7 @@ dns: - hostname.bind cache_size: 4194304 cache_ttl_min: 0 - cache_ttl_max: 0 + cache_ttl_max: 3600 bogus_nxdomain: [] aaaa_disabled: false enable_dnssec: false @@ -69,6 +67,7 @@ dns: cache_time: 30 rewrites: [] blocked_services: [] + customresolver: null tls: enabled: false server_name: "" @@ -76,6 +75,8 @@ tls: port_https: 443 port_dns_over_tls: 853 port_dns_over_quic: 784 + port_dnscrypt: 0 + dnscrypt_config_file: "" allow_unencrypted_doh: false strict_sni_check: false certificate_chain: "" @@ -125,4 +126,4 @@ log_max_size: 100 log_max_age: 3 log_file: "" verbose: false -schema_version: 7 +schema_version: 7 \ No newline at end of file diff --git a/Dockerfile b/Dockerfile index 710b22f..2c59fea 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM adguard/adguardhome:v0.104.3 +FROM adguard/adguardhome:v0.106.2 COPY AdGuardHome.yaml /opt/adguardhome/conf/AdGuardHome.yaml