diff options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/manual/misc/security_tips.html.en | 9 | ||||
-rw-r--r-- | docs/manual/misc/security_tips.xml.ko | 2 | ||||
-rw-r--r-- | docs/manual/misc/security_tips.xml.tr | 2 | ||||
-rw-r--r-- | docs/manual/mod/mod_ratelimit.html.en | 6 |
4 files changed, 10 insertions, 9 deletions
diff --git a/docs/manual/misc/security_tips.html.en b/docs/manual/misc/security_tips.html.en index f4ecd19445..84dcbf6fe1 100644 --- a/docs/manual/misc/security_tips.html.en +++ b/docs/manual/misc/security_tips.html.en @@ -126,13 +126,14 @@ <li>The use of a threaded <a href="../mpm.html">mpm</a> may allow you to handle more simultaneous connections, thereby - mitigating DoS attacks. Further, the experimental + mitigating DoS attacks. Further, the <code class="module"><a href="../mod/event.html">event</a></code> mpm uses asynchronous processing to avoid devoting a thread to each - connection. At the current point of time this - is work in progress and not fully implemented. Especially the + connection. Due to the nature of the OpenSSL library the <code class="module"><a href="../mod/event.html">event</a></code> mpm is currently incompatible with - <code class="module"><a href="../mod/mod_ssl.html">mod_ssl</a></code> and other input filters.</li> + <code class="module"><a href="../mod/mod_ssl.html">mod_ssl</a></code> and other input filters. In these + cases it falls back to the behaviour of the + <code class="module"><a href="../mod/worker.html">worker</a></code> mpm.</li> <li>There are a number of third-party modules available through <a href="http://modules.apache.org/">http://modules.apache.org/</a> diff --git a/docs/manual/misc/security_tips.xml.ko b/docs/manual/misc/security_tips.xml.ko index 85c5fa9017..901d886e5c 100644 --- a/docs/manual/misc/security_tips.xml.ko +++ b/docs/manual/misc/security_tips.xml.ko @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="EUC-KR" ?> <!DOCTYPE manualpage SYSTEM "../style/manualpage.dtd"> <?xml-stylesheet type="text/xsl" href="../style/manual.ko.xsl"?> -<!-- English Revision: 105989:1188200 (outdated) --> +<!-- English Revision: 105989:1205885 (outdated) --> <!-- Licensed to the Apache Software Foundation (ASF) under one or more diff --git a/docs/manual/misc/security_tips.xml.tr b/docs/manual/misc/security_tips.xml.tr index d9cfba47c5..3d4d8b6f12 100644 --- a/docs/manual/misc/security_tips.xml.tr +++ b/docs/manual/misc/security_tips.xml.tr @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE manualpage SYSTEM "../style/manualpage.dtd"> <?xml-stylesheet type="text/xsl" href="../style/manual.tr.xsl"?> -<!-- English Revision: 805049:1188200 (outdated) --> +<!-- English Revision: 805049:1205885 (outdated) --> <!-- ===================================================== Translated by: Nilgün Belma Bugüner <nilgun belgeler.org> Reviewed by: Orhan Berent <berent belgeler.org> diff --git a/docs/manual/mod/mod_ratelimit.html.en b/docs/manual/mod/mod_ratelimit.html.en index a1972b729b..52bb6914d6 100644 --- a/docs/manual/mod/mod_ratelimit.html.en +++ b/docs/manual/mod/mod_ratelimit.html.en @@ -30,14 +30,14 @@ <h3>Summary</h3> -<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> <div class="example"><h3>Example Configuration</h3><p><code> <Location /downloads><br /> <span class="indent"> -SetHandler RATE_LIMIT<br /> +SetOutputFilter RATE_LIMIT<br /> SetEnv rate-limit 400 <br /> </span> </Location> |