Is a Software providing a DNS-over-HTTPS server
Setup¶
- Downloadand unzip the content with
bunzip2 doh-proxy*
- Copy the executable to
/usr/local/bin/
-
One time setup for Alpine Linux
sudo adduser -s /usr/sbin/nologin -D -H doh-proxy
- Edit a new service in
/etc/init.d/doh-proxy
and set pr
```sh
!/sbin/openrc-run¶
name=doh-proxy description="DNS over HTTPS server proxy" supervisor="supervise-daemon" command="/usr/local/bin/doh-proxy" command_args="-u 127.0.0.1:53" command_user="doh-proxy"
depend() { after syslog network-online } ```
- Set proper 755 permissions
sudo rc-update add doh-proxy default
sudo rc-service doh-proxy start