From 99caf3eb4ee1ae710ac690d26f14493c0182ca4c Mon Sep 17 00:00:00 2001 From: Rich Bowen Date: Fri, 30 Mar 2012 01:52:58 +0000 Subject: [PATCH] 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 --- docs/manual/mod/mod_ssl.xml | 43 +++++++++++++++++++------------------ 1 file changed, 22 insertions(+), 21 deletions(-) diff --git a/docs/manual/mod/mod_ssl.xml b/docs/manual/mod/mod_ssl.xml index 88f94f01dd..87b2c38828 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. -- 2.40.0