From: Luca Toscano Date: Thu, 15 Dec 2016 17:55:15 +0000 (+0000) Subject: Documentation rebuild X-Git-Tag: 2.4.24~8 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e4a57df95650018e2cb934391fb6de2d10464f8e;p=thirdparty%2Fapache%2Fhttpd.git Documentation rebuild git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1774503 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/mod/mod_ratelimit.html.en b/docs/manual/mod/mod_ratelimit.html.en index a2b4f29894b..3a5bae2abfd 100644 --- a/docs/manual/mod/mod_ratelimit.html.en +++ b/docs/manual/mod/mod_ratelimit.html.en @@ -32,7 +32,8 @@ -
Description:Bandwidth Rate Limiting for Clients
Status:Extension
Module Identifier:ratelimit_module
Source File:mod_ratelimit.c
+Source File:mod_ratelimit.c +Compatibility:rate-initial-burst available in httpd 2.4.24 and later.

Summary

@@ -40,11 +41,20 @@ The connection speed to be simulated is specified, in KiB/s, using the environment variable rate-limit.

+

Optionally, an initial amount of burst data, in KiB, may be +configured to be passed at full speed before throttling to the +specified rate limit. This value is optional, and is set using +the environment variable rate-initial-burst.

+

Example Configuration

<Location "/downloads">
     SetOutputFilter RATE_LIMIT
     SetEnv rate-limit 400 
+    SetEnv rate-initial-burst 512
 </Location>
-
+
+If the value specified for rate-limit causes integer overflow, the rate-limited will be disabled. +If the value specified for rate-limit-burst causes integer overflow, the burst will be disabled. +

Directives