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_basic.xml | |
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_basic.xml')
-rw-r--r-- | docs/manual/mod/mod_auth_basic.xml | 16 |
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"> -<Location /secure> +<Location "/secure"> AuthType basic AuthName "private area" AuthBasicProvider dbm AuthDBMType SDBM - AuthDBMUserFile /www/etc/dbmpasswd + AuthDBMUserFile "/www/etc/dbmpasswd" Require valid-user </Location> </highlight> @@ -136,7 +136,7 @@ username and password</description> <example><title>Fixed Example</title> <highlight language="config"> -<Location /demo> +<Location "/demo"> AuthBasicFake demo demopass </Location> </highlight> @@ -150,8 +150,8 @@ username and password</description> <example><title>Certificate Example</title> <highlight language="config"> -<Location /secure> - AuthBasicFake %{SSL_CLIENT_S_DN_Email} +<Location "/secure"> + AuthBasicFake "%{SSL_CLIENT_S_DN_Email}" </Location> </highlight> </example> @@ -163,15 +163,15 @@ username and password</description> <example><title>Password Example</title> <highlight language="config"> -<Location /secure> - AuthBasicFake %{SSL_CLIENT_S_DN_Email} %{sha1:passphrase-%{SSL_CLIENT_S_DN_Email}} +<Location "/secure"> + AuthBasicFake "%{SSL_CLIENT_S_DN_Email}" "%{sha1:passphrase-%{SSL_CLIENT_S_DN_Email}}" </Location> </highlight> </example> <example><title>Exclusion Example</title> <highlight language="config"> -<Location /public> +<Location "/public"> AuthBasicFake off </Location> </highlight> |