From d94f4fa7bfce5bd0a56dc2e457397a5e2452c629 Mon Sep 17 00:00:00 2001 From: Eric Covener Date: Wed, 23 Nov 2011 20:09:24 +0000 Subject: [PATCH] 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 --- docs/manual/mod/mod_ratelimit.xml | 6 +++--- 1 file 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. --> -

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> -- 2.40.0