]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
Update documentation to point to proper function 13230/head
authorMike Damm <md@md.vc>
Mon, 11 Sep 2023 00:30:59 +0000 (17:30 -0700)
committerGitHub <noreply@github.com>
Mon, 11 Sep 2023 00:30:59 +0000 (17:30 -0700)
Additional parameters to webserver() are now depreciated. Update documentation to refer to setWebserverConfig()

pdns/dnsdistdist/docs/guides/webserver.rst

index 453f6d1bcab8425bbc1a8370dfb652e727e68089..4a15a8c1e09b89379f6f7a60b202f27a816095a4 100755 (executable)
@@ -30,7 +30,7 @@ By default, our web server sends some security-related headers::
    X-XSS-Protection: 1; mode=block
    Content-Security-Policy: default-src 'self'; style-src 'self' 'unsafe-inline'
 
-You can override those headers, or add custom headers by using the last parameter to :func:`webserver`.
+You can override those headers, or add custom headers by using the last parameter to :func:`setWebserverConfig`.
 For example, to remove the X-Frame-Options header and add a X-Custom one:
 
 .. code-block:: lua
@@ -42,7 +42,7 @@ Credentials can be changed at run time using the :func:`setWebserverConfig` func
 dnsdist API
 -----------
 
-To access the API, the `apikey` must be set in the :func:`webserver` function.
+To access the API, the `apikey` must be set in the :func:`setWebserverConfig` function.
 Use the API, this key will need to be sent to dnsdist in the ``X-API-Key`` request header.
 An HTTP 401 response is returned when a wrong or no API key is received.
 A 404 response is generated is the requested endpoint does not exist.