Commit d2de4182 authored by Richard Bowen's avatar Richard Bowen
Browse files

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
parent f6d5a19a
Loading
Loading
Loading
Loading
+5 −2
Original line number Diff line number Diff line
@@ -329,8 +329,9 @@ person in</title>
    (It's the <code>-c</code> that makes it create a new password
    file).</p>

    <p>Now, you need to modify your <code>.htaccess</code> file to
    look like the following:</p>
    <p>Now, you need to modify your <code>.htaccess</code> file or
    <directive module="core" type="section">Directory</directive>
    block to look like the following:</p>

    <example>
      AuthType Basic<br />
@@ -401,11 +402,13 @@ Require group GroupName

    <example>
    &lt;Directory /www/docs/private&gt;<br />
    <indent>
    AuthName "Private"<br />
    AuthType Basic<br />
    AuthBasicProvider dbm<br />
    AuthDBMUserFile /www/passwords/passwd.dbm<br />
    Require valid-user<br />
    </indent>
&lt;/Directory&gt;
    </example>