Dns over https server2
This guide is for Linux systems, this guide does not work for Windows, Mac OS or Raspberry Pi (Beacuse Raspberry Pi uses ARM processor)
Install DOH server:
wget https://www.aaflalo.me/doh-server/doh-server_2.0.1_amd64.deb
dpkg -i doh-server_2.0.1_amd64.deb
rm doh-server_2.0.1_amd64.deb
Edit config to match your setup/etc/dns-over-https/doh-server.conf:
listen = [
"[::]:443",
]
cert = ""
key = ""
path = "/dns-query"
upstream = [
"127.0.0.1:53",
]
timeout = 2
tries = 3
tcp_only = false
verbose = false
log_guessed_client_ip = false
And restart the service:
systemctl restart doh-server