You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rb...@apache.org on 2002/03/02 03:30:10 UTC

cvs commit: httpd-docs-1.3/htdocs/manual/mod mod_userdir.html

rbowen      02/03/01 18:30:10

  Modified:    htdocs/manual/mod mod_userdir.html
  Log:
  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.
  
  Revision  Changes    Path
  1.20      +19 -0     httpd-docs-1.3/htdocs/manual/mod/mod_userdir.html
  
  Index: mod_userdir.html
  ===================================================================
  RCS file: /home/cvs/httpd-docs-1.3/htdocs/manual/mod/mod_userdir.html,v
  retrieving revision 1.19
  retrieving revision 1.20
  diff -u -r1.19 -r1.20
  --- mod_userdir.html	11 Nov 2001 03:24:01 -0000	1.19
  +++ mod_userdir.html	2 Mar 2002 02:30:10 -0000	1.20
  @@ -115,6 +115,25 @@
         and the <a href="../misc/security_tips.html">Security
         Tips</a> page for more information.</strong>
       </blockquote>
  +
  +<p>Additional examples:</p>
  +
  +<p>To allow a few users to have <code>UserDir</code> directories, but
  +not anyone else, use the following:</p>
  +
  +<pre>
  +UserDir disabled
  +UserDir enabled user1 user2 user3
  +</pre>
  +
  +<p>To allow most users to have <code>UserDir</code> directories, but
  +deny this to a few, use the following:</p>
  +
  +<pre>
  +UserDir enabled
  +UserDir disabled user4 user5 user6
  +</pre>
  +
       <!--#include virtual="footer.html" -->
     </body>
   </html>