From 732d265fc895d7f88635fb3a1b26cf5a40d819d4 Mon Sep 17 00:00:00 2001 From: Eric Covener Date: Mon, 23 May 2016 14:55:13 +0000 Subject: [PATCH] add a -R example, I had to ask for help to figure out the single quotes. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1745206 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/expr.xml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/manual/expr.xml b/docs/manual/expr.xml index 69d02d6bfc..40ad217f28 100644 --- a/docs/manual/expr.xml +++ b/docs/manual/expr.xml @@ -609,6 +609,11 @@ listfunction ::= listfuncname "(" word ")" </If> </Directory> +# Check against the client IP +<If "-R '192.168.1.0/24'"> + Header set matched true +</If> + # Function examples in boolean context <If "md5('foo') == 'acbd18db4cc2f85cedef654fccc4a4d8'"> Header set checksum-matched true -- 2.50.1