Commit 84f28a5d authored by Jim Jagielski's avatar Jim Jagielski
Browse files

Docs update. Sync with transforms


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@504899 13f79535-47bb-0310-9956-ffa450edef68
parent 09de8708
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -19,7 +19,7 @@
.el .ne 3
.IP "\\$1" \\$2
..
.TH "HTDIGEST" 1 "2003-11-25" "Apache HTTP Server" "htdigest"
.TH "HTDIGEST" 1 "2007-02-08" "Apache HTTP Server" "htdigest"

.SH NAME
htdigest \- manage user files for digest authentication
@@ -55,3 +55,8 @@ The realm name to which the user name belongs\&.
\fIusername\fR
The user name to create or update in \fIpasswdfile\fR\&. If \fIusername\fR does not exist is this file, an entry is added\&. If it does exist, the password is changed\&.  
 
.SH "SECURITY CONSIDERATIONS"
 
.PP
This program is not safe as a setuid executable\&. Do \fInot\fR make it setuid\&.
 
+4 −1
Original line number Diff line number Diff line
@@ -19,7 +19,7 @@
.el .ne 3
.IP "\\$1" \\$2
..
.TH "HTPASSWD" 1 "2005-11-13" "Apache HTTP Server" "htpasswd"
.TH "HTPASSWD" 1 "2007-02-08" "Apache HTTP Server" "htpasswd"

.SH NAME
htpasswd \- Manage user files for basic authentication
@@ -130,6 +130,9 @@ Encrypts the password from the command line (Pwd4Steve) using the MD5 algorithm,
.PP
Web password files such as those managed by htpasswd should \fInot\fR be within the Web server's URI space -- that is, they should not be fetchable with a browser\&.
 
.PP
This program is not safe as a setuid executable\&. Do \fInot\fR make it setuid\&.
 
.PP
The use of the -b option is discouraged, since when it is used the unencrypted password appears on the command line\&.
 
+1 −1
Original line number Diff line number Diff line
@@ -7,7 +7,7 @@

  <variants>
    <variant>en</variant>
    <variant outdated="yes">ja</variant>
    <variant>ja</variant>
    <variant outdated="yes">ko</variant>
  </variants>
</metafile>
+1 −0
Original line number Diff line number Diff line
@@ -124,6 +124,7 @@
<li><a href="mod_cache.html#cacheignorecachecontrol">CacheIgnoreCacheControl</a></li>
<li><a href="mod_cache.html#cacheignoreheaders">CacheIgnoreHeaders</a></li>
<li><a href="mod_cache.html#cacheignorenolastmod">CacheIgnoreNoLastMod</a></li>
<li><a href="mod_cache.html#cacheignorequerystring">CacheIgnoreQueryString</a></li>
<li><a href="mod_cache.html#cachelastmodifiedfactor">CacheLastModifiedFactor</a></li>
<li><a href="mod_cache.html#cachemaxexpire">CacheMaxExpire</a></li>
<li><a href="mod_disk_cache.html#cachemaxfilesize">CacheMaxFileSize</a></li>
+8 −2
Original line number Diff line number Diff line
@@ -246,8 +246,14 @@ for HTTP Basic authentication.</td></tr>
      <li>otherwise, deny or decline access</li>
    </ul>

    <p>Other <code class="directive"><a href="../mod/core.html#require">Require</a></code> values may also be 
    used which may require loading additional authorization modules.</p>
    <p>Other <code class="directive"><a href="../mod/core.html#require">Require</a></code> values may also
    be used which may require loading additional authorization modules.
    Note that if you use a <code class="directive"><a href="../mod/core.html#require">Require</a></code>
    value from another authorization module, you will need to ensure that
    <code class="directive"><a href="#authzldapauthoritative">AuthzLDAPAuthoritative</a></code>
    is set to <code>off</code> to allow the authorization phase to fall
    back to the module providing the alternate
    <code class="directive"><a href="../mod/core.html#require">Require</a></code> value.</p>

    <ul>
        <li>Grant access if there is a <a href="#requser"><code>require
Loading