important updates to 2018-10-21-dnscrypt-proxy-quick-dirty-debian.md

It turns out that sometimes the cache and log directories don't get
created so creating them must be documented.

The other is just fixing a link that was previously broken.
This commit is contained in:
Aminda Suomalainen 2018-12-03 12:12:30 +02:00
parent 89dbf3889d
commit 4f7cbfe023
No known key found for this signature in database
GPG Key ID: 0C207F07B2F32B67
1 changed files with 16 additions and 1 deletions

View File

@ -114,4 +114,19 @@ echo 'make_resolv_conf() { :; }' > /etc/dhcp/dhclient-enter-hooks.d/leave_my_res
chmod 755 /etc/dhcp/dhclient-enter-hooks.d/leave_my_resolv_conf_alone
```
For the curious my dnscrypt-proxy config: https://github.com/Mikaela/shell-things/tree/master/etc/dnscrypt-proxy
* * * * *
**WARNING from 2018-10-21!** It appears that the cache and log directories
of dnscrypt-proxy don't sometimes get created automatically (at least on
Debian GNU/Linux 9.6 (stretch).
If this happens to you or you would like to be sure to get them:
```
sudo mkdir -p /var/cache/dnscrypt-proxy/ /var/log/dnscrypt-proxy/
sudo chown -R _dnscrypt-proxy:nogroup /var/cache/dnscrypt-proxy /var/log/dnscrypt-proxy
```
* * * * *
For the curious my dnscrypt-proxy config [is in my shell-things repository](https://github.com/Mikaela/shell-things/tree/master/etc/dnscrypt-proxy) [mirror](https://gitea.blesmrt.net/mikaela/shell-things/src/branch/master/etc/dnscrypt-proxy).