mirror of
https://github.com/NLnetLabs/unbound.git
synced 2025-12-20 23:00:56 -05:00
* Set version to 1.19.1 for point release. * Initial work for Redis read-only replica support. * Test for Redis replica. * Documentation for the Redis replica timeouts. * redis replica, rewrite set_timeout() * clean merge. * Add new options for fast reload. * Apply suggestions from code review Co-authored-by: Wouter Wijngaards <wcawijngaards@users.noreply.github.com> * some more typos --------- Co-authored-by: W.C.A. Wijngaards <wouter@nlnetlabs.nl> Co-authored-by: Wouter Wijngaards <wcawijngaards@users.noreply.github.com>
31 lines
751 B
Text
31 lines
751 B
Text
server:
|
|
verbosity: 7
|
|
num-threads: 1
|
|
interface: 127.0.0.1
|
|
port: @PORT@
|
|
use-syslog: no
|
|
directory: ""
|
|
pidfile: "unbound.pid"
|
|
chroot: ""
|
|
username: ""
|
|
module-config: "cachedb iterator"
|
|
root-key-sentinel: no
|
|
trust-anchor-signaling: no
|
|
cachedb:
|
|
backend: redis
|
|
redis-server-path: @REDIS_SOCKET@
|
|
redis-replica-server-path: @REDIS_REPLICA_SOCKET@
|
|
auth-zone:
|
|
name: "redis.com"
|
|
for-upstream: yes
|
|
for-downstream: no
|
|
zonefile: "redis.zone"
|
|
remote-control:
|
|
control-enable: yes
|
|
control-interface: 127.0.0.1
|
|
# control-interface: ::1
|
|
control-port: @CONTROL_PORT@
|
|
server-key-file: "unbound_server.key"
|
|
server-cert-file: "unbound_server.pem"
|
|
control-key-file: "unbound_control.key"
|
|
control-cert-file: "unbound_control.pem"
|