mirror of
https://github.com/pygos/build.git
synced 2024-11-05 11:37:10 +01:00
94cc2d2c46
- build needs a pair of product and board name - some products can only be built for some boards - Config files in product/<name> directory override those in board/<name> - For some config files, like LDPATH or ROOTFS, the files are merged - product/common provides defaults Add default config for various services: - Add default config for unbound - Add default config for dnsmasq Signed-off-by: David Oberhollenzer <david.oberhollenzer@tele2.at>
13 lines
359 B
Text
13 lines
359 B
Text
server:
|
|
pidfile: "/tmp/unbound.pid"
|
|
|
|
# allow only queries from local machine on port 5353
|
|
interface: 127.0.0.1
|
|
access-control: 127.0.0.0/8 allow
|
|
port: 5353
|
|
|
|
# See RFC 7816 "DNS Query Name Minimisation to Improve Privacy"
|
|
qname-minimisation: yes
|
|
|
|
# Root trust anchor key file for DNSSEC validation.
|
|
auto-trust-anchor-file: "/var/lib/unbound/root.key"
|