summaryrefslogtreecommitdiffstats
path: root/docs/manual/mod/mod_auth_digest.html.en
diff options
context:
space:
mode:
authorKen Coar <coar@apache.org>2015-04-15 01:35:26 +0200
committerKen Coar <coar@apache.org>2015-04-15 01:35:26 +0200
commita90c8fdafb0ddf833dd502996aadea2066e3c63c (patch)
treeb4a4175b76a0c3dcb144fd819aac761b8a3586fc /docs/manual/mod/mod_auth_digest.html.en
parentRebuild HTML docs (diff)
downloadapache2-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.en6
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">&lt;Location /private/&gt;
+ <div class="example"><h3>Example:</h3><pre class="prettyprint lang-config">&lt;Location "/private/"&gt;
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
&lt;/Location&gt;</pre>
</div>