From: Richard Bowen Date: Sat, 2 Mar 2002 02:37:17 +0000 (+0000) Subject: Added example of denying, or allowing, particular users to have UserDir X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1f59e53f321fbf809632c659e5fc57d981c12b97;p=apache 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 --- 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/~*/http://www.foo.com/~bob/one/two.html Tips page for more information. +

Additional examples:

+ +

To allow a few users to have UserDir directories, but +not anyone else, use the following:

+ + +UserDir disabled
+UserDir enabled user1 user2 user3 +
+ +

To allow most users to have UserDir directories, but +deny this to a few, use the following:

+ + +UserDir enabled
+UserDir disabled user4 user5 user6 +
+