diff options
author | Ken Coar <coar@apache.org> | 2015-04-15 01:35:26 +0200 |
---|---|---|
committer | Ken Coar <coar@apache.org> | 2015-04-15 01:35:26 +0200 |
commit | a90c8fdafb0ddf833dd502996aadea2066e3c63c (patch) | |
tree | b4a4175b76a0c3dcb144fd819aac761b8a3586fc /docs/manual/mod/mod_auth_digest.html.en | |
parent | Rebuild HTML docs (diff) | |
download | apache2-a90c8fdafb0ddf833dd502996aadea2066e3c63c.tar.xz apache2-a90c8fdafb0ddf833dd502996aadea2066e3c63c.zip |
Following up on BZ 53530.. putting quotation marks around
arbitrary-text, complex, and/or filesystem directive arguments.
More to do..
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1673582 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/manual/mod/mod_auth_digest.html.en')
-rw-r--r-- | docs/manual/mod/mod_auth_digest.html.en | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/manual/mod/mod_auth_digest.html.en b/docs/manual/mod/mod_auth_digest.html.en index 0030e013c1..c9df7ecb40 100644 --- a/docs/manual/mod/mod_auth_digest.html.en +++ b/docs/manual/mod/mod_auth_digest.html.en @@ -83,13 +83,13 @@ <p>Appropriate user (text) files can be created using the <code class="program"><a href="../programs/htdigest.html">htdigest</a></code> tool.</p> - <div class="example"><h3>Example:</h3><pre class="prettyprint lang-config"><Location /private/> + <div class="example"><h3>Example:</h3><pre class="prettyprint lang-config"><Location "/private/"> AuthType Digest AuthName "private area" - AuthDigestDomain /private/ http://mirror.my.dom/private2/ + AuthDigestDomain "/private/" "http://mirror.my.dom/private2/" AuthDigestProvider file - AuthUserFile /web/auth/.digest_pw + AuthUserFile "/web/auth/.digest_pw" Require valid-user </Location></pre> </div> |