From: Eric Covener Date: Wed, 23 Nov 2011 20:10:01 +0000 (+0000) Subject: Merge r1205560 from trunk: X-Git-Tag: 2.3.16~106 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4cdd25bab3d63038458b677a31cb335b8d1e083f;p=apache Merge r1205560 from trunk: mod_ratelimit has an output filter, not a handler. Also took a quick pass through the other text. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1205561 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/mod/mod_ratelimit.xml b/docs/manual/mod/mod_ratelimit.xml index 079c4464b5..0128def459 100644 --- a/docs/manual/mod/mod_ratelimit.xml +++ b/docs/manual/mod/mod_ratelimit.xml @@ -33,14 +33,14 @@ the document to validate. --> -

Provides a rate_limit filter to limit client bandwidth. -The connection speed to be simulated is specified, in kb/s, using the environment +

Provides a filter named RATE_LIMIT to limit client bandwidth. +The connection speed to be simulated is specified, in KiB/s, using the environment variable rate-limit.

Example Configuration <Location /downloads>
-SetHandler RATE_LIMIT
+SetOutputFilter RATE_LIMIT
SetEnv rate-limit 400
</Location>