diff options
author | Joshua Slive <slive@apache.org> | 2002-05-27 00:08:58 +0200 |
---|---|---|
committer | Joshua Slive <slive@apache.org> | 2002-05-27 00:08:58 +0200 |
commit | 46c22f4e0162d586f5d3ad37af83dfbc2a7ebe5a (patch) | |
tree | 10b9b28932d476233c6db75ec7e9f0d0220670b7 /docs/manual/mod/mod_userdir.xml | |
parent | Fix for suexec execution of CGI scripts from mod_include (diff) | |
download | apache2-46c22f4e0162d586f5d3ad37af83dfbc2a7ebe5a.tar.xz apache2-46c22f4e0162d586f5d3ad37af83dfbc2a7ebe5a.zip |
Small mod doc updates.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95291 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/manual/mod/mod_userdir.xml')
-rwxr-xr-x | docs/manual/mod/mod_userdir.xml | 32 |
1 files changed, 13 insertions, 19 deletions
diff --git a/docs/manual/mod/mod_userdir.xml b/docs/manual/mod/mod_userdir.xml index 070ab33d19..1ee195d4eb 100755 --- a/docs/manual/mod/mod_userdir.xml +++ b/docs/manual/mod/mod_userdir.xml @@ -4,32 +4,27 @@ <modulesynopsis> <name>mod_userdir</name> -<description>Provides for user-specific -directories</description> +<description>User-specific directories</description> <status>Base</status> <sourcefile>mod_userdir.c</sourcefile> <identifier>userdir_module</identifier> <summary> +This module allows user-specific directories to be accessed using the +<code>http://example.com/~user/</code> syntax. </summary> +<seealso><a href="../urlmapping.html">Mapping URLs to the +Filesystem</a></seealso> <directivesynopsis> <name>UserDir</name> -<description>Sets the directory from which to serve files when requests -for a particular user are received, denoted by requests containing -<em>~username</em>, such as -<em>http://server.example.com/~bob/</em></description> +<description>Location of the user-specific directories</description> <syntax>UserDir <em>directory-filename</em></syntax> <default>UserDir public_html</default> <contextlist><context>server config</context> <context>virtual host</context></contextlist> -<compatibility>All forms except the <code>UserDir public_html</code> -form are only available in Apache 1.1 or above. Use of the -<code>enabled</code> keyword, or <code>disabled</code> with a -list of usernames, is only available in Apache 1.3 and -above.</compatibility> <usage> @@ -90,14 +85,13 @@ http://www.foo.com/~*/</td><td>http://www.foo.com/~bob/one/two.html</td></tr> <note> <strong>Be careful when using this directive; for instance, - <code>"UserDir ./"</code> would map - <code>"/~root"</code> to <code>"/"</code> - which is probably - undesirable. If you are running Apache 1.3 or above, it is - strongly recommended that your configuration include a - "<code>UserDir disabled root</code>" declaration. - See also the <directive module="core">Directory</directive> - directive and the <a href="../misc/security_tips.html">Security - Tips</a> page for more information.</strong> + <code>"UserDir ./"</code> would map <code>"/~root"</code> to + <code>"/"</code> - which is probably undesirable. It is strongly + recommended that your configuration include a "<code>UserDir + disabled root</code>" declaration. See also the <directive + module="core">Directory</directive> directive and the <a + href="../misc/security_tips.html">Security Tips</a> page for + more information.</strong> </note> <p>Additional examples:</p> |