]> git.ipfire.org Git - thirdparty/pdns.git/blame_incremental - pdns/README-dnsdist.md
dnsdist: Add HTTPStatusAction to return a specific HTTP response
[thirdparty/pdns.git] / pdns / README-dnsdist.md
... / ...
CommitLineData
1# dnsdist
2`dnsdist` is a highly DNS-, DoS- and abuse-aware loadbalancer. Its goal in
3life is to route traffic to the best server, delivering top performance
4to legitimate users while shunting or blocking abusive traffic.
5
6`dnsdist` is dynamic, in the sense that its configuration can be changed at
7runtime, and that its statistics can be queried from a console-like
8interface.
9
10All `dnsdist` features are documented at [dnsdist.org](https://dnsdist.org).
11
12## Compiling from git
13
14Make sure to `autoreconf -vi` before running `configure`.
15
16## macOS Notes
17
18Install dependencies from Homebrew:
19
20```sh
21brew install autoconf automake boost libedit libsodium libtool lua pkg-config protobuf
22```
23
24Let configure know where to find libedit, and openssl or libressl:
25
26```sh
27./configure 'PKG_CONFIG_PATH=/usr/local/opt/libedit/lib/pkgconfig:/usr/local/opt/libressl/lib/pkgconfig'
28make
29```