Linuxfag here,
How do I enable DNS-over-TLS or DNS-over-HTTPS for Windows 10? all the tutorials I found are for Windows 11, I'm doing this for my brother who is still running Windows 10.
On Linux I just install unbound and configure it as a local dns server with DoT enabled, can I just use unbound on windows the same way i do on linux?
this is my unbound.conf btw:
server:
interface: 127.0.0.1
tls-cert-bundle: "/etc/ssl/certs/ca-certificates.crt"
auto-trust-anchor-file: "/var/lib/unbound/root.key"
forward-zone:
name: "."
forward-tls-upstream: yes
forward-first: no
forward-addr: 9.9.9.9@853#dns.quad9.net
forward-addr: 149.112.112.112@853#dns.quad9.net
What would be the equivalent windows path for "/etc/ssl/certs/ca-certificates.crt" and "/var/lib/unbound/root.key" ?