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:37:17 UTC

cvs commit: httpd-2.0/docs/manual/mod mod_userdir.xml

rbowen      02/03/01 18:37:17

  Modified:    docs/manual/mod mod_userdir.xml
  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.4       +18 -0     httpd-2.0/docs/manual/mod/mod_userdir.xml
  
  Index: mod_userdir.xml
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/docs/manual/mod/mod_userdir.xml,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- mod_userdir.xml	18 Feb 2002 15:54:13 -0000	1.3
  +++ mod_userdir.xml	2 Mar 2002 02:37:17 -0000	1.4
  @@ -99,6 +99,24 @@
         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>