updated README

This commit is contained in:
Niklas 2020-12-30 22:18:08 +01:00
parent 9828429bea
commit a71b619763

View File

@ -23,10 +23,23 @@ acl: # List of ip filter rules
- name: local - name: local
cidr: 127.0.0.1/32 cidr: 127.0.0.1/32
tls:
enable: true # Enable DNS over TLS
address: 0.0.0.0:8853 # What address and port to liste for tls connections
cert: cert.crt # Path to the certificate file
key: private.key # Path to the private key file
forward: forward:
acl: # What IPs are allowed acl: # What IPs are allowed
- vpn - vpn
server: "8.8.8.8:53" # DNS server to forward to server: "8.8.8.8:53" # DNS server to forward to
address: 0.0.0.0:8053 # What address and port to listen on address: 0.0.0.0:8053 # What address and port to listen on
blacklist: # What domains to block when forwarding
# URL of the blacklist
- url: https://raw.githubusercontent.com/anudeepND/blacklist/master/adservers.txt
format: host # Format of the blacklist: Hostfile
- url: https://blocklistproject.github.io/Lists/alt-version/ads-nl.txt
format: line # Format: One domain per line
``` ```