diff options
author | Jim Jagielski <jim@apache.org> | 2016-11-23 13:43:55 +0100 |
---|---|---|
committer | Jim Jagielski <jim@apache.org> | 2016-11-23 13:43:55 +0100 |
commit | 777c9dc9ba0c614337f4c16eb34789e99196ec33 (patch) | |
tree | 0208031434911f69dfa84edb5b55c7d14230e752 /docs/manual/mod/mod_ratelimit.html.en | |
parent | Allow for initual burst at full speed (diff) | |
download | apache2-777c9dc9ba0c614337f4c16eb34789e99196ec33.tar.xz apache2-777c9dc9ba0c614337f4c16eb34789e99196ec33.zip |
Update xforms
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1770958 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r-- | docs/manual/mod/mod_ratelimit.html.en | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/docs/manual/mod/mod_ratelimit.html.en b/docs/manual/mod/mod_ratelimit.html.en index f79d2df5a2..ec7d22f1ef 100644 --- a/docs/manual/mod/mod_ratelimit.html.en +++ b/docs/manual/mod/mod_ratelimit.html.en @@ -39,9 +39,15 @@ The connection speed to be simulated is specified, in KiB/s, using the environment variable <code>rate-limit</code>.</p> +<p>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 <code>rate-initial-burst</code>.</p> + <div class="example"><h3>Example Configuration</h3><pre class="prettyprint lang-config"><Location "/downloads"> SetOutputFilter RATE_LIMIT SetEnv rate-limit 400 + SetEnv rate-initial-burst 512 </Location></pre> </div> |