Last active 1716841896

Revision 714f8fda1eefa0c43d06a8fa6a2d98e098d0b79e

AdGuardHome.yaml Raw
1# remove all comments
2http:
3 pprof:
4 port: 6060
5 enabled: false
6 address: 0.0.0.0:24248 # port for HTTP UI - use a port not used by anything else. For docker, leave 0.0.0.0 as-is
7 session_ttl: 720h
8
9tls:
10 enabled: true
11 server_name: "yourdomain.name" # TLS cert MUST have this as the CN or SAN
12 force_https: false
13 port_https: 0 # tell AGH not to serve the UI over HTTPS
14 port_dns_over_tls: 853 # tell AGH to serve a DoT endpoint
15 port_dns_over_quic: 0
16 port_dnscrypt: 0
17 dnscrypt_config_file: ""
18 allow_unencrypted_doh: true # because NPM will proxy HTTPS to HTTP
19 certificate_chain: ""
20 private_key: ""
21 certificate_path: "/path/to/cert" # for DoT only
22 private_key_path: "/path/to/key" # for DoT only
23 strict_sni_check: false
24