summaryrefslogtreecommitdiff
path: root/docs/manual/howto
diff options
context:
space:
mode:
authorDaniel Gruno <humbedooh@apache.org>2012-05-15 06:23:24 +0000
committerDaniel Gruno <humbedooh@apache.org>2012-05-15 06:23:24 +0000
commitd1aab0c55d98f46b85d827e73702cca0b3deb34f (patch)
tree128bf7df8d5c96514a9d6a9641bc30b9448cd45e /docs/manual/howto
parentb0ac4e9a877764f4151cfc721c931a906803d3c0 (diff)
downloadhttpd-d1aab0c55d98f46b85d827e73702cca0b3deb34f.tar.gz
Small inconsistency fix
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1338549 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/manual/howto')
-rw-r--r--docs/manual/howto/access.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/manual/howto/access.xml b/docs/manual/howto/access.xml
index 3920db755d..d78e93bb26 100644
--- a/docs/manual/howto/access.xml
+++ b/docs/manual/howto/access.xml
@@ -133,7 +133,7 @@ Require not gov
following:</p>
<highlight language="config">
-&lt;If "%{HTTP_USER_AGENT} = 'BadBot'"&gt;
+&lt;If "%{HTTP_USER_AGENT} == 'BadBot'"&gt;
Require All Denied
&lt;/If&gt;
</highlight>
@@ -162,7 +162,7 @@ Require not gov
<highlight language="config">
RewriteEngine On
-RewriteCond %{TIME_HOUR} &gt;20 [OR]
+RewriteCond %{TIME_HOUR} &gt;=20 [OR]
RewriteCond %{TIME_HOUR} &lt;07
RewriteRule ^/fridge - [F]
</highlight>