Return-Path: X-Original-To: apmail-httpd-cvs-archive@www.apache.org Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 216DC17F19 for ; Wed, 11 Mar 2015 22:11:00 +0000 (UTC) Received: (qmail 10091 invoked by uid 500); 11 Mar 2015 22:11:00 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 10040 invoked by uid 500); 11 Mar 2015 22:11:00 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 10030 invoked by uid 99); 11 Mar 2015 22:10:59 -0000 Received: from eris.apache.org (HELO hades.apache.org) (140.211.11.105) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 11 Mar 2015 22:10:59 +0000 Received: from hades.apache.org (localhost [127.0.0.1]) by hades.apache.org (ASF Mail Server at hades.apache.org) with ESMTP id D5CF3AC0163 for ; Wed, 11 Mar 2015 22:10:59 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1666025 - in /httpd/httpd/trunk/docs/manual/howto: access.html.en access.xml htaccess.html.en htaccess.xml Date: Wed, 11 Mar 2015 22:10:59 -0000 To: cvs@httpd.apache.org From: jailletc36@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20150311221059.D5CF3AC0163@hades.apache.org> Author: jailletc36 Date: Wed Mar 11 22:10:59 2015 New Revision: 1666025 URL: http://svn.apache.org/r1666025 Log: Fix doc as spotted by Sven in online doc Modified: httpd/httpd/trunk/docs/manual/howto/access.html.en httpd/httpd/trunk/docs/manual/howto/access.xml httpd/httpd/trunk/docs/manual/howto/htaccess.html.en httpd/httpd/trunk/docs/manual/howto/htaccess.xml Modified: httpd/httpd/trunk/docs/manual/howto/access.html.en URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/howto/access.html.en?rev=1666025&r1=1666024&r2=1666025&view=diff ============================================================================== --- httpd/httpd/trunk/docs/manual/howto/access.html.en (original) +++ httpd/httpd/trunk/docs/manual/howto/access.html.en Wed Mar 11 22:10:59 2015 @@ -130,7 +130,7 @@ Require not host gov following:

<If "%{HTTP_USER_AGENT} == 'BadBot'">
-    Require All Denied
+    Require all denied
 </If>
Modified: httpd/httpd/trunk/docs/manual/howto/access.xml URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/howto/access.xml?rev=1666025&r1=1666024&r2=1666025&view=diff ============================================================================== --- httpd/httpd/trunk/docs/manual/howto/access.xml (original) +++ httpd/httpd/trunk/docs/manual/howto/access.xml Wed Mar 11 22:10:59 2015 @@ -134,7 +134,7 @@ Require not host gov <If "%{HTTP_USER_AGENT} == 'BadBot'"> - Require All Denied + Require all denied </If> Modified: httpd/httpd/trunk/docs/manual/howto/htaccess.html.en URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/howto/htaccess.html.en?rev=1666025&r1=1666024&r2=1666025&view=diff ============================================================================== --- httpd/httpd/trunk/docs/manual/howto/htaccess.html.en (original) +++ httpd/httpd/trunk/docs/manual/howto/htaccess.html.en Wed Mar 11 22:10:59 2015 @@ -302,7 +302,7 @@ changes on a per-directory basis.

AuthName "Password Required" AuthUserFile /www/passwords/password.file AuthGroupFile /www/passwords/group.file -Require Group admins +Require group admins

Note that AllowOverride AuthConfig must be in effect Modified: httpd/httpd/trunk/docs/manual/howto/htaccess.xml URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/docs/manual/howto/htaccess.xml?rev=1666025&r1=1666024&r2=1666025&view=diff ============================================================================== --- httpd/httpd/trunk/docs/manual/howto/htaccess.xml (original) +++ httpd/httpd/trunk/docs/manual/howto/htaccess.xml Wed Mar 11 22:10:59 2015 @@ -332,7 +332,7 @@ AuthType Basic AuthName "Password Required" AuthUserFile /www/passwords/password.file AuthGroupFile /www/passwords/group.file -Require Group admins +Require group admins

Note that AllowOverride AuthConfig must be in effect