diff options
author | Rich Bowen <rbowen@apache.org> | 2012-03-30 03:54:23 +0200 |
---|---|---|
committer | Rich Bowen <rbowen@apache.org> | 2012-03-30 03:54:23 +0200 |
commit | 6b2c9a39e381883af51494e3deecc61ae567886a (patch) | |
tree | ed32e7257378773e7aa9a3a200367a043fdf0afa /docs/manual | |
parent | It's not very nice to tell me all about how to use it, and *then* tell (diff) | |
download | apache2-6b2c9a39e381883af51494e3deecc61ae567886a.tar.xz apache2-6b2c9a39e381883af51494e3deecc61ae567886a.zip |
Rebuild.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1307212 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/manual')
-rw-r--r-- | docs/manual/mod/mod_ssl.html.en | 43 |
1 files changed, 22 insertions, 21 deletions
diff --git a/docs/manual/mod/mod_ssl.html.en b/docs/manual/mod/mod_ssl.html.en index 1b63ab730f..7b7ece1aea 100644 --- a/docs/manual/mod/mod_ssl.html.en +++ b/docs/manual/mod/mod_ssl.html.en @@ -1747,6 +1747,28 @@ boolean expression is true</td></tr> <tr><th><a href="directive-dict.html#Status">Status:</a></th><td>Extension</td></tr> <tr><th><a href="directive-dict.html#Module">Module:</a></th><td>mod_ssl</td></tr> </table> + +<div class="note"><h3>SSLRequire is deprecated</h3> +<p><code>SSLRequire</code> is deprecated and should in general be replaced +by <a href="mod_authz_core.html#reqexpr">Require expr</a>. The so called +<a href="../expr.html">ap_expr</a> syntax of <code>Require expr</code> is +a superset of the syntax of <code>SSLRequire</code>, with the following +exception:</p> + +<p>In <code>SSLRequire</code>, the comparison operators <code><</code>, +<code><=</code>, ... are completely equivalent to the operators +<code>lt</code>, <code>le</code>, ... and work in a somewhat pecular way that +first compares the length of two strings and then the lexical order. +On the other hand, <a href="../expr.html">ap_expr</a> has two sets of +comparison operators: The operators <code><</code>, +<code><=</code>, ... do lexical string comparison, while the operators +<code>-lt</code>, <code>-le</code>, ... do integer comparison. +For the latter, there are also aliases without the leading dashes: +<code>lt</code>, <code>le</code>, ... +</p> + +</div> + <p> This directive specifies a general access requirement which has to be fulfilled in order to allow access. It is a very powerful directive because the @@ -1837,27 +1859,6 @@ the left-hand-side expression.</p></li> </ul> </div> -<div class="note"><h3>SSLRequire is deprecated</h3> -<p><code>SSLRequire</code> is deprecated and should in general be replaced -by <a href="mod_authz_core.html#reqexpr">Require expr</a>. The so called -<a href="../expr.html">ap_expr</a> syntax of <code>Require expr</code> is -a superset of the syntax of <code>SSLRequire</code>, with the following -exception:</p> - -<p>In <code>SSLRequire</code>, the comparison operators <code><</code>, -<code><=</code>, ... are completely equivalent to the operators -<code>lt</code>, <code>le</code>, ... and work in a somewhat pecular way that -first compares the length of two strings and then the lexical order. -On the other hand, <a href="../expr.html">ap_expr</a> has two sets of -comparison operators: The operators <code><</code>, -<code><=</code>, ... do lexical string comparison, while the operators -<code>-lt</code>, <code>-le</code>, ... do integer comparison. -For the latter, there are also aliases without the leading dashes: -<code>lt</code>, <code>le</code>, ... -</p> - -</div> - <h3>See also</h3> <ul> |