From: Eric Covener Date: Wed, 23 Nov 2011 20:09:24 +0000 (+0000) Subject: mod_ratelimit has an output filter, not a handler. Also took a quick X-Git-Tag: 2.5.0-alpha~7819 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d94f4fa7bfce5bd0a56dc2e457397a5e2452c629;p=apache 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/trunk@1205560 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>