From: Rich Bowen Date: Fri, 30 Mar 2012 01:58:26 +0000 (+0000) Subject: It's not very kind to tell me all about how to do it, and then tell me X-Git-Tag: 2.4.2~71 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bb4172f137835bd56a6eaca2c35bca21e08a9b53;p=apache It's not very kind to tell me all about how to do it, and then tell me it's deprecated. Move note up. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1307213 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/mod/mod_ssl.xml b/docs/manual/mod/mod_ssl.xml index 88f94f01dd..432b1d98a8 100644 --- a/docs/manual/mod/mod_ssl.xml +++ b/docs/manual/mod/mod_ssl.xml @@ -1291,6 +1291,28 @@ boolean expression is true AuthConfig + +SSLRequire is deprecated +

SSLRequire is deprecated and should in general be replaced +by Require expr. The so called +ap_expr syntax of Require expr is +a superset of the syntax of SSLRequire, with the following +exception:

+ +

In SSLRequire, the comparison operators <, +<=, ... are completely equivalent to the operators +lt, le, ... and work in a somewhat pecular way that +first compares the length of two strings and then the lexical order. +On the other hand, ap_expr has two sets of +comparison operators: The operators <, +<=, ... do lexical string comparison, while the operators +-lt, -le, ... do integer comparison. +For the latter, there are also aliases without the leading dashes: +lt, le, ... +

+ +
+

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 @@ -1384,26 +1406,6 @@ the left-hand-side expression.

-SSLRequire is deprecated -

SSLRequire is deprecated and should in general be replaced -by Require expr. The so called -ap_expr syntax of Require expr is -a superset of the syntax of SSLRequire, with the following -exception:

- -

In SSLRequire, the comparison operators <, -<=, ... are completely equivalent to the operators -lt, le, ... and work in a somewhat pecular way that -first compares the length of two strings and then the lexical order. -On the other hand, ap_expr has two sets of -comparison operators: The operators <, -<=, ... do lexical string comparison, while the operators --lt, -le, ... do integer comparison. -For the latter, there are also aliases without the leading dashes: -lt, le, ... -

- -
Environment Variables in Apache HTTP Server,