AdGuardHome.yaml
· 491 B · YAML
Raw
http:
pprof:
port: 6060
enabled: false
address: 0.0.0.0:19152 # use a port not used by anything else
session_ttl: 720h
tls:
enabled: true
server_name: "yourdomain.name"
force_https: false
port_https: 0
port_dns_over_tls: 853
port_dns_over_quic: 853
port_dnscrypt: 0
dnscrypt_config_file: ""
allow_unencrypted_doh: true
certificate_chain: ""
private_key: ""
certificate_path: "/path/to/cert"
private_key_path: "/path/to/key"
strict_sni_check: false
1 | http: |
2 | pprof: |
3 | port: 6060 |
4 | enabled: false |
5 | address: 0.0.0.0:19152 # use a port not used by anything else |
6 | session_ttl: 720h |
7 | |
8 | tls: |
9 | enabled: true |
10 | server_name: "yourdomain.name" |
11 | force_https: false |
12 | port_https: 0 |
13 | port_dns_over_tls: 853 |
14 | port_dns_over_quic: 853 |
15 | port_dnscrypt: 0 |
16 | dnscrypt_config_file: "" |
17 | allow_unencrypted_doh: true |
18 | certificate_chain: "" |
19 | private_key: "" |
20 | certificate_path: "/path/to/cert" |
21 | private_key_path: "/path/to/key" |
22 | strict_sni_check: false |
23 |