Merge r635137 from trunk:
Pet peeve: fix capitalisation of 'Require' directive
Merge r450473 from trunk:
Minor typo
Merge r545834 from trunk:
Fix a typo, as per PR 40447.
Submitted by Tony Stevenson.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@655823
13f79535-47bb-0310-9956-
ffa450edef68
authenticated users can be allowed or denied access to portions
of the web site. <module>mod_authz_user</module> grants
access if the authenticated user is listed in a <code>Require user</code>
- directive. Alternatively <code>require valid-user</code> can be used to
+ directive. Alternatively <code>Require valid-user</code> can be used to
grant access to all successfully authenticated users.</p>
</summary>
<seealso><directive module="core">Require</directive></seealso>
<br />
<LimitExcept GET OPTIONS><br />
<indent>
- require user admin<br />
+ Require user admin<br />
</indent>
</LimitExcept><br />
</indent>
<p>You may wish to use <module>mod_access</module> inside the
<directive type="section" module="core">Location</directive>
- directive to limite access to your server configuration
+ directive to limit access to your server configuration
information:</p>
<example>
<th>Description</th></tr>
<tr><td>min</td>
<td>0</td>
- <td>Minumum number of connections that will always
+ <td>Minimum number of connections that will always
be open to the backend server.</td></tr>
<tr><td>max</td>
<td>1...n</td>
AuthType Basic
AuthBasicProvider file
AuthUserFile /usr/local/apache2/conf/httpd.passwd
-require valid-user
+Require valid-user
</Directory></pre>
</example>