Configuration: add bind_hosts

Ainar Garipov 2021-03-22 18:00:45 +03:00
parent 2cec13b87f
commit 3994551464

@ -142,7 +142,10 @@ Settings are stored in [YAML format](https://en.wikipedia.org/wiki/YAML), possib
- `dns` — DNS configuration section.
- **General settings**
- `bind_host` - DNS interface IP address to listen on.
- `bind_host` (**before v0.106.0**) - IP address on which to serve DNS
queries.
- `bind_hosts` (**after v0.106.0**) - IP addresses on which to serve DNS
queries. The addresses must be on different interfaces.
- `port` — DNS server port to listen on.
- `statistics_interval` - time interval for statistics (in days)
- **Protection settings**
@ -296,4 +299,4 @@ Alternatively, you may want to simply download the file and analyze it later:
```
wget http://localhost:6060/debug/pprof/heap
go tool -http=:8080 heap
```
```