Commit c8b2ce5e authored by Nilgun Belma Buguner's avatar Nilgun Belma Buguner
Browse files

break lines in <example>

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@1067110 13f79535-47bb-0310-9956-ffa450edef68
parent c760859b
Loading
Loading
Loading
Loading
+9 −9
Changes for docs/manual/howto/auth.xml: 9 added lines, 9 removed lines.
Original line number Diff line number Diff line
@@ -270,15 +270,15 @@ will be given unauthenticated access to the resource. This would be accomplished
by using the Satisfy directive, as shown below.</p>

<example>
&lt;Directory /usr/local/apache/htdocs/sekrit&gt;
  AuthType Basic
  AuthName intranet
  AuthUserFile /www/passwd/users
  AuthGroupFile /www/passwd/groups
  Require group customers
  Order allow,deny
  Allow from internal.com
  Satisfy any
&lt;Directory /usr/local/apache/htdocs/sekrit&gt;<br />
  AuthType Basic<br />
  AuthName intranet<br />
  AuthUserFile /www/passwd/users<br />
  AuthGroupFile /www/passwd/groups<br />
  Require group customers<br />
  Order allow,deny<br />
  Allow from internal.com<br />
  Satisfy any<br />
&lt;/Directory&gt;
</example>