]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
rebuild
authorDaniel Gruno <humbedooh@apache.org>
Tue, 15 May 2012 06:24:01 +0000 (06:24 +0000)
committerDaniel Gruno <humbedooh@apache.org>
Tue, 15 May 2012 06:24:01 +0000 (06:24 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1338550 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/howto/access.html.en

index 26580f4ba4d641a1f6d150e90630dd0d4644ffa1..a3add8dd0a1d93d28695318bc800d06644b9a483 100644 (file)
@@ -135,7 +135,7 @@ Require not gov
     following:</p>
 
     <pre class="prettyprint lang-config">
-&lt;If "%{HTTP_USER_AGENT} = 'BadBot'"&gt;
+&lt;If "%{HTTP_USER_AGENT} == 'BadBot'"&gt;
     Require All Denied
 &lt;/If&gt;
     </pre>
@@ -164,7 +164,7 @@ Require not gov
 
     <pre class="prettyprint lang-config">
 RewriteEngine On
-RewriteCond %{TIME_HOUR} &gt;20 [OR]
+RewriteCond %{TIME_HOUR} &gt;=20 [OR]
 RewriteCond %{TIME_HOUR} &lt;07
 RewriteRule ^/fridge - [F]
     </pre>