From: Artem Boldariev Date: Thu, 20 May 2021 15:17:26 +0000 (+0300) Subject: modify CHANGES [GL #2809] X-Git-Tag: v9.17.17~20^2~3 X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=ac9ce6f4467fa4626a3dbb5a1f917c2778f5aace;p=thirdparty%2Fbind9.git modify CHANGES [GL #2809] Document the new HTTP specific options in the CHANGES file. --- diff --git a/CHANGES b/CHANGES index 4c3dc38ef72..71dfbfcc1b4 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,23 @@ +5684. [func] Changes to the DNS-over-HTTP (DoH) configuration + syntax: + + - The maximum number of active DoH connections + can now be set using the "http-listener-clients" + option. The default is 300. + - The maximum number of concurrent HTTP/2 streams + per connection can be set using via the + "http-streams-per-connection" option. The default + is 100. + - Both of these values also can be set on a per- + listener basis using the "listener-clients" and + "streams-per-connection" parameters in an + "http" statement. For example: + http { + listener-clients ; + streams-per-connection ; + }; + [GL #2809] + 5683. [func] The configuration checking code now verifies HTTP paths. [GL !5231]