From: Rich 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-Tag: 2.0.33~56 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4c3e7d183e234453143810f449a73d54d2c188ee;p=thirdparty%2Fapache%2Fhttpd.git 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 01c4395aaaf..7ee31fe51f9 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 +
+