From: Henk Kraal Date: Fri, 27 Feb 2015 13:41:16 +0000 (+0100) Subject: Added web server configuration parameters X-Git-Tag: dnsdist-1.0.0-alpha1~248^2~106^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F2287%2Fhead;p=thirdparty%2Fpdns.git Added web server configuration parameters --- diff --git a/docs/markdown/httpapi/README.md b/docs/markdown/httpapi/README.md index a7cdb7a8e8..e8e1b31456 100644 --- a/docs/markdown/httpapi/README.md +++ b/docs/markdown/httpapi/README.md @@ -44,6 +44,14 @@ After restarting `pdns_server`, the following examples should start working: `jq` is a highly recommended tool for pretty-printing JSON. If you don't have `jq`, try `json_pp` or `python -mjson.tool` instead. +When running multiple instances you might want to specify on which address the web server should run: + + # IP Address of web server to listen on + webserver-address=127.0.0.1 + # Port of web server to listen on + webserver-port=8081 + # Web server access is only allowed from these subnets + webserver-allow-from=0.0.0.0/0,::/0" Try it (Recursor edition) -------------------------