Files
routedns/cmd/routedns/example-config/use-case-5-server.toml
Frank Olbricht 95687063e7 Improve docs and break out config guide (#39)
* Improve docs and break out config guide

* Fix broken links to config guide
2020-05-31 20:24:08 -06:00

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