From: Rich Bowen Date: Fri, 30 Mar 2012 01:52:58 +0000 (+0000) Subject: It's not very nice to tell me all about how to use it, and *then* tell X-Git-Tag: 2.5.0-alpha~7295 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=99caf3eb4ee1ae710ac690d26f14493c0182ca4c;p=thirdparty%2Fapache%2Fhttpd.git It's not very nice to tell me all about how to use it, and *then* tell me it's deprecated. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1307211 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/mod/mod_ssl.xml b/docs/manual/mod/mod_ssl.xml index 88f94f01dd5..87b2c388289 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,27 +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, for additional examples.