summaryrefslogtreecommitdiffstats
path: root/docs/manual
diff options
context:
space:
mode:
authorEric Covener <covener@apache.org>2012-04-04 03:31:48 +0200
committerEric Covener <covener@apache.org>2012-04-04 03:31:48 +0200
commit3203bcebf699a9f7b70e1caff5f1cc98901efdeb (patch)
treebf0aa49e82e2ef4e4cdb5ad002ed3e0b14f55446 /docs/manual
parentPR50662: reword the hint about sslrequire expressions being parsed in (diff)
downloadapache2-3203bcebf699a9f7b70e1caff5f1cc98901efdeb.tar.xz
apache2-3203bcebf699a9f7b70e1caff5f1cc98901efdeb.zip
xform
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1309206 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/manual')
-rw-r--r--docs/manual/mod/mod_ssl.html.en12
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/manual/mod/mod_ssl.html.en b/docs/manual/mod/mod_ssl.html.en
index 4e87e618ec..960c89c052 100644
--- a/docs/manual/mod/mod_ssl.html.en
+++ b/docs/manual/mod/mod_ssl.html.en
@@ -1815,12 +1815,12 @@ function ::= funcname "<strong>(</strong>" funcargs "<strong>)</strong>"
<code>funcname</code> the available functions are listed in
the <a href="../expr.html#functions">ap_expr documentation</a>.</p>
-<p>Notice that <em>expression</em> is first parsed into an internal machine
-representation and then evaluated in a second step. Actually, in Global and
-Per-Server Class context <em>expression</em> is parsed at startup time and
-at runtime only the machine representation is executed. For Per-Directory
-context, specifically in a .htaccess context, this is different: here <em>
-expression</em> has to be parsed and immediately executed for every request.</p>
+<p>The <em>expression</em> is parsed into an internal machine
+representation when the configuration is loaded, and then evaluated
+during request processing. In .htaccess context, the <em>expression</em> is
+both parsed and executed each time the .htaccess file is encountered during
+request processing.</p>
+
<div class="example"><h3>Example</h3><pre>SSLRequire ( %{SSL_CIPHER} !~ m/^(EXP|NULL)-/ \
and %{SSL_CLIENT_S_DN_O} eq "Snake Oil, Ltd." \
and %{SSL_CLIENT_S_DN_OU} in {"Staff", "CA", "Dev"} \