mirror of
https://github.com/apache/httpd.git
synced 2025-11-06 16:49:32 +03:00
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@103425 13f79535-47bb-0310-9956-ffa450edef68
69 lines
2.7 KiB
XML
69 lines
2.7 KiB
XML
<?xml version='1.0' encoding='UTF-8' ?>
|
|
<!DOCTYPE manualpage SYSTEM "../style/manualpage.dtd">
|
|
<?xml-stylesheet type="text/xsl" href="../style/manual.en.xsl"?>
|
|
<!-- $Revision: 1.4 $ -->
|
|
|
|
<!--
|
|
Copyright 2003-2004 The Apache Software Foundation
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
-->
|
|
|
|
<manualpage metafile="htdigest.xml.meta">
|
|
<parentdocument href="./">Programs</parentdocument>
|
|
|
|
<title>htdigest - manage user files for digest authentication</title>
|
|
|
|
<summary>
|
|
<p><code>htdigest</code> is used to create and update the flat-files used
|
|
to store usernames, realm and password for digest authentication of HTTP
|
|
users. Resources available from the Apache HTTP server can be restricted
|
|
to just the users listed in the files created by <code>htdigest</code>.</p>
|
|
|
|
<p>This manual page only lists the command line arguments. For details of
|
|
the directives necessary to configure digest authentication in
|
|
<a href="httpd.html">httpd</a> see the Apache manual, which is part
|
|
of the Apache distribution or can be found at
|
|
<a href="http://httpd.apache.org/">http://httpd.apache.org/</a>.</p>
|
|
</summary>
|
|
<seealso><a href="httpd.html">httpd</a></seealso>
|
|
<seealso><module>mod_auth_digest</module></seealso>
|
|
|
|
<section id="synopsis"><title>Synopsis</title>
|
|
<p><code><strong>htdigest</strong> [ -<strong>c</strong> ]
|
|
<var>passwdfile</var> <var>realm</var> <var>username</var></code></p>
|
|
</section>
|
|
|
|
<section id="options"><title>Options</title>
|
|
<dl>
|
|
<dt><code>-c</code></dt>
|
|
<dd>Create the <var>passwdfile</var>. If <var>passwdfile</var> already
|
|
exists, it is deleted first.</dd>
|
|
|
|
<dt><code><var>passwdfile</var></code></dt>
|
|
<dd>Name of the file to contain the username, realm and password. If
|
|
<code>-c</code> is given, this file is created if it does not already
|
|
exist, or deleted and recreated if it does exist.</dd>
|
|
|
|
<dt><code><var>realm</var></code></dt>
|
|
<dd>The realm name to which the user name belongs.</dd>
|
|
|
|
<dt><code><var>username</var></code></dt>
|
|
<dd>The user name to create or update in <var>passwdfile</var>. If
|
|
<var>username</var> does not exist is this file, an entry is added. If it
|
|
does exist, the password is changed.</dd>
|
|
</dl>
|
|
</section>
|
|
|
|
</manualpage>
|