]> git.ipfire.org Git - thirdparty/pdns.git/blame - pdns/README-dnsdist.md
dnsdist: Add HTTPStatusAction to return a specific HTTP response
[thirdparty/pdns.git] / pdns / README-dnsdist.md
CommitLineData
20d81666 1# dnsdist
773470ca 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
f5edd495 10All `dnsdist` features are documented at [dnsdist.org](https://dnsdist.org).
b1b2586e 11
48c7cae9
PD
12## Compiling from git
13
14Make sure to `autoreconf -vi` before running `configure`.
15
b1b2586e
CH
16## macOS Notes
17
18Install dependencies from Homebrew:
19
d5f41e30
JS
20```sh
21brew install autoconf automake boost libedit libsodium libtool lua pkg-config protobuf
b1b2586e
CH
22```
23
a0b20b82 24Let configure know where to find libedit, and openssl or libressl:
b1b2586e 25
d5f41e30 26```sh
a0b20b82 27./configure 'PKG_CONFIG_PATH=/usr/local/opt/libedit/lib/pkgconfig:/usr/local/opt/libressl/lib/pkgconfig'
d5f41e30 28make
b1b2586e 29```