summaryrefslogtreecommitdiffstats
path: root/docs/manual/mod/mod_auth_basic.xml
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_basic.xml
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_basic.xml')
-rw-r--r--docs/manual/mod/mod_auth_basic.xml16
1 files changed, 8 insertions, 8 deletions
diff --git a/docs/manual/mod/mod_auth_basic.xml b/docs/manual/mod/mod_auth_basic.xml
index 730af2da11..46b6dacff4 100644
--- a/docs/manual/mod/mod_auth_basic.xml
+++ b/docs/manual/mod/mod_auth_basic.xml
@@ -60,12 +60,12 @@
that the chosen provider module is present in the server.</p>
<example><title>Example</title>
<highlight language="config">
-&lt;Location /secure&gt;
+&lt;Location "/secure"&gt;
AuthType basic
AuthName "private area"
AuthBasicProvider dbm
AuthDBMType SDBM
- AuthDBMUserFile /www/etc/dbmpasswd
+ AuthDBMUserFile "/www/etc/dbmpasswd"
Require valid-user
&lt;/Location&gt;
</highlight>
@@ -136,7 +136,7 @@ username and password</description>
<example><title>Fixed Example</title>
<highlight language="config">
-&lt;Location /demo&gt;
+&lt;Location "/demo"&gt;
AuthBasicFake demo demopass
&lt;/Location&gt;
</highlight>
@@ -150,8 +150,8 @@ username and password</description>
<example><title>Certificate Example</title>
<highlight language="config">
-&lt;Location /secure&gt;
- AuthBasicFake %{SSL_CLIENT_S_DN_Email}
+&lt;Location "/secure"&gt;
+ AuthBasicFake "%{SSL_CLIENT_S_DN_Email}"
&lt;/Location&gt;
</highlight>
</example>
@@ -163,15 +163,15 @@ username and password</description>
<example><title>Password Example</title>
<highlight language="config">
-&lt;Location /secure&gt;
- AuthBasicFake %{SSL_CLIENT_S_DN_Email} %{sha1:passphrase-%{SSL_CLIENT_S_DN_Email}}
+&lt;Location "/secure"&gt;
+ AuthBasicFake "%{SSL_CLIENT_S_DN_Email}" "%{sha1:passphrase-%{SSL_CLIENT_S_DN_Email}}"
&lt;/Location&gt;
</highlight>
</example>
<example><title>Exclusion Example</title>
<highlight language="config">
-&lt;Location /public&gt;
+&lt;Location "/public"&gt;
AuthBasicFake off
&lt;/Location&gt;
</highlight>