diff options
author | Eric Covener <covener@apache.org> | 2011-11-23 21:09:24 +0100 |
---|---|---|
committer | Eric Covener <covener@apache.org> | 2011-11-23 21:09:24 +0100 |
commit | d94f4fa7bfce5bd0a56dc2e457397a5e2452c629 (patch) | |
tree | 92af8bf062a94011fab3c08d5e0fbdbb0df2db3c /docs/manual/mod | |
parent | update xforms (diff) | |
download | apache2-d94f4fa7bfce5bd0a56dc2e457397a5e2452c629.tar.xz apache2-d94f4fa7bfce5bd0a56dc2e457397a5e2452c629.zip |
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
Diffstat (limited to 'docs/manual/mod')
-rw-r--r-- | docs/manual/mod/mod_ratelimit.xml | 6 |
1 files changed, 3 insertions, 3 deletions
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. --> <summary> -<p>Provides a <code>rate_limit</code> filter to limit client bandwidth. -The connection speed to be simulated is specified, in kb/s, using the environment +<p>Provides a filter named <code>RATE_LIMIT</code> to limit client bandwidth. +The connection speed to be simulated is specified, in KiB/s, using the environment variable <code>rate-limit</code>.</p> <example><title>Example Configuration</title> <Location /downloads><br /> <indent> -SetHandler RATE_LIMIT<br /> +SetOutputFilter RATE_LIMIT<br /> SetEnv rate-limit 400 <br /> </indent> </Location> |