From: Rich Bowen Date: Sat, 17 Nov 2012 03:15:50 +0000 (+0000) Subject: Indent example for better readability. X-Git-Tag: 2.2.24~87 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=808b903b60e9f22e8cf2380f89584ef9f966b236;p=thirdparty%2Fapache%2Fhttpd.git Indent example for better readability. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@1410685 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/howto/auth.xml b/docs/manual/howto/auth.xml index 1a0511e3e7c..eb07caac8c1 100644 --- a/docs/manual/howto/auth.xml +++ b/docs/manual/howto/auth.xml @@ -283,14 +283,16 @@ by using the Satisfy directive, as shown below.

<Directory /usr/local/apache/htdocs/sekrit>
- AuthType Basic
- AuthName intranet
- AuthUserFile /www/passwd/users
- AuthGroupFile /www/passwd/groups
- Require group customers
- Order allow,deny
- Allow from internal.com
- Satisfy any
+ + AuthType Basic
+ AuthName intranet
+ AuthUserFile /www/passwd/users
+ AuthGroupFile /www/passwd/groups
+ Require group customers
+ Order allow,deny
+ Allow from internal.com
+ Satisfy any
+
</Directory>
@@ -397,11 +399,11 @@ Require group GroupName <Directory /www/docs/private>
- AuthName "Private"
- AuthType Basic
- AuthBasicProvider dbm
- AuthDBMUserFile /www/passwords/passwd.dbm
- Require valid-user
+ AuthName "Private"
+ AuthType Basic
+ AuthBasicProvider dbm
+ AuthDBMUserFile /www/passwords/passwd.dbm
+ Require valid-user
</Directory>