From: Rich Bowen
Date: Sat, 17 Nov 2012 02:31:37 +0000 (+0000)
Subject: Correctly indent the example so that it's more readable.
X-Git-Tag: 2.2.24~91
X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8b320f86303e7fa73a629758e3f5fcdd84c6d742;p=thirdparty%2Fapache%2Fhttpd.git
Correctly indent the example so that it's more readable.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@1410671 13f79535-47bb-0310-9956-ffa450edef68
---
diff --git a/docs/manual/howto/auth.xml b/docs/manual/howto/auth.xml
index d3c339a49eb..64e5adbb218 100644
--- a/docs/manual/howto/auth.xml
+++ b/docs/manual/howto/auth.xml
@@ -329,8 +329,9 @@ person in
(It's the -c
that makes it create a new password
file).
- Now, you need to modify your .htaccess
file to
- look like the following:
+ Now, you need to modify your .htaccess
file or
+ Directory
+ block to look like the following:
AuthType Basic
@@ -401,11 +402,13 @@ Require group GroupName
<Directory /www/docs/private>
+
AuthName "Private"
AuthType Basic
AuthBasicProvider dbm
AuthDBMUserFile /www/passwords/passwd.dbm
Require valid-user
+
</Directory>