summaryrefslogtreecommitdiffstats
path: root/docs/manual
diff options
context:
space:
mode:
authorRich Bowen <rbowen@apache.org>2002-03-02 03:37:17 +0100
committerRich Bowen <rbowen@apache.org>2002-03-02 03:37:17 +0100
commit4c3e7d183e234453143810f449a73d54d2c188ee (patch)
treef61f56476ff98f7e510981c08b7eb3fde3194bcd /docs/manual
parentAdded the documentation for building Apache for NetWare using the GNU (diff)
downloadapache2-4c3e7d183e234453143810f449a73d54d2c188ee.tar.xz
apache2-4c3e7d183e234453143810f449a73d54d2c188ee.zip
Added example of denying, or allowing, particular users to have UserDir
directories. In a discussion on IRC, it was requested that an explicit example of this configuration be provided in the documentation. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@93668 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/manual')
-rwxr-xr-xdocs/manual/mod/mod_userdir.xml18
1 files changed, 18 insertions, 0 deletions
diff --git a/docs/manual/mod/mod_userdir.xml b/docs/manual/mod/mod_userdir.xml
index 01c4395aaa..7ee31fe51f 100755
--- a/docs/manual/mod/mod_userdir.xml
+++ b/docs/manual/mod/mod_userdir.xml
@@ -99,6 +99,24 @@ http://www.foo.com/~*/</td><td>http://www.foo.com/~bob/one/two.html</td></tr>
Tips</a> page for more information.</strong>
</note>
+<p>Additional examples:</p>
+
+<p>To allow a few users to have <code>UserDir</code> directories, but
+not anyone else, use the following:</p>
+
+<example>
+UserDir disabled<br />
+UserDir enabled user1 user2 user3
+</example>
+
+<p>To allow most users to have <code>UserDir</code> directories, but
+deny this to a few, use the following:</p>
+
+<example>
+UserDir enabled<br />
+UserDir disabled user4 user5 user6
+</example>
+
</usage>
</directivesynopsis>