1 apache-mod_userdir.conf,v 1.6 2008/11/16 14:12:47 gotar Exp $
2 LoadModule userdir_module modules/mod_userdir.so
4 # Settings for user home directories
6 # Required module: mod_userdir
8 <IfModule mod_userdir.c>
10 # UserDir: The name of the directory that is appended onto a user's home
11 # directory if a ~user request is received. Note that you must also set
12 # the default access control for these directories, as in the example below.
17 # Control access to UserDir directories. The following is an example
18 # for a site where these directories are restricted to read-only.
20 <Directory /home/users/*/public_html>
21 AllowOverride FileInfo AuthConfig Limit Indexes
22 Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
23 <Limit GET POST OPTIONS>
27 <LimitExcept GET POST OPTIONS>
32 # php_admin_value open_basedir "/home/users:/usr/share/pear:/usr/share/php:/tmp"