mirror of
https://github.com/folbricht/routedns.git
synced 2026-01-08 02:29:56 -06:00
16 lines
368 B
TOML
16 lines
368 B
TOML
# DoH server enforcing mutual-TLS with clients and then forwards every
|
|
# query to Cloudflare over DoT.
|
|
|
|
[resolvers.cloudflare-dot]
|
|
address = "1.1.1.1:853"
|
|
protocol = "dot"
|
|
|
|
[listeners.proxy-doh]
|
|
address = ":443"
|
|
protocol = "doh"
|
|
resolver = "cloudflare-dot"
|
|
server-crt = "/path/to/server.crt"
|
|
server-key = "/path/to/server.key"
|
|
ca = "/path/to/ca.crt"
|
|
mutual-tls = true
|