Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
e387f2810c | |||
6dd5b5e143 | |||
98ccd864b5 |
@ -35,6 +35,7 @@ COPY unbound.conf /etc/unbound/unbound.conf
|
|||||||
|
|
||||||
EXPOSE 53/udp
|
EXPOSE 53/udp
|
||||||
EXPOSE 53/tcp
|
EXPOSE 53/tcp
|
||||||
|
EXPOSE 443/tcp
|
||||||
EXPOSE 853/tcp
|
EXPOSE 853/tcp
|
||||||
|
|
||||||
VOLUME /etc/unbound
|
VOLUME /etc/unbound
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
This project provides a Docker image containing the unbound nameserver
|
This project provides a Docker image containing the unbound nameserver
|
||||||
in an Alpine Linux base.
|
in an Alpine Linux base.
|
||||||
|
|
||||||
unbound will be build including the DNSSEC and DNS-over-TLS features.
|
unbound will be build including the DNSSEC, DNS-over-HTTPS and DNS-over-TLS features.
|
||||||
|
|
||||||
|
|
||||||
|
@ -13,10 +13,13 @@ server:
|
|||||||
# initially create using unbound-anchor -a /etc/unbound/root.key
|
# initially create using unbound-anchor -a /etc/unbound/root.key
|
||||||
auto-trust-anchor-file: /etc/unbound/root.key
|
auto-trust-anchor-file: /etc/unbound/root.key
|
||||||
|
|
||||||
|
# can be created using letsencrypt means, e.g. by a companion Apache httpd with mod_md
|
||||||
tls-service-key: /etc/unbound/privkey.pem
|
tls-service-key: /etc/unbound/privkey.pem
|
||||||
tls-service-pem: /etc/unbound/pubcert.pem
|
tls-service-pem: /etc/unbound/pubcert.pem
|
||||||
interface: 0.0.0.0@853
|
interface: 0.0.0.0@853
|
||||||
tls-port: 853
|
tls-port: 853
|
||||||
|
interface: 0.0.0.0@443
|
||||||
|
https-port: 443
|
||||||
|
|
||||||
num-threads: 2
|
num-threads: 2
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user