forked from pool/dnsdist
- package the docs directory so we can reference it in the example config - Fix url to the sample configuration - switch build system to meson - fix code 15 build by forcing a newer gcc - update to 2.0.0 https://www.dnsdist.org/changelog.html#change-2.0.0 - new buildrequires: - gnutls - libebpf - build script needs python3-PyYAML to generate sources - preparation for enabling new features in the future: - yaml-config: - adds vendor.tar.xz to vendor the rust modules. built linking fails currently - xdp support - not sure yet if that can be later toggled in the config - quiche support which brings DoH3 OBS-URL: https://build.opensuse.org/package/show/server:dns/dnsdist?expand=0&rev=75
13 lines
417 B
Lua
13 lines
417 B
Lua
-- this is a base example configuration
|
|
-- for more see
|
|
-- https://github.com/PowerDNS/pdns/blob/master/pdns/dnsdistdist/dnsdistconf.lua
|
|
-- /usr/share/doc/packages/dnsdist/docs/reference/config.rst
|
|
-- controlSocket("127.0.0.1")
|
|
-- setKey(please generate a fresh private key with makeKey())
|
|
|
|
addLocal("127.0.0.1:53")
|
|
-- newServer{address="8.8.8.8:53"}
|
|
-- newServer{address="8.8.4.4:53"}
|
|
|
|
-- vim: set filetype=lua
|