1 LoadModule userdir_module modules/mod_userdir.so
3 # Settings for user home directories
5 # Required module: mod_userdir
7 <IfModule mod_userdir.c>
9 # UserDir: The name of the directory that is appended onto a user's home
10 # directory if a ~user request is received. Note that you must also set
11 # the default access control for these directories, as in the example below.
16 # Control access to UserDir directories. The following is an example
17 # for a site where these directories are restricted to read-only.
19 <Directory /home/users/*/public_html>
20 AllowOverride FileInfo AuthConfig Limit Indexes
21 Options Indexes SymLinksIfOwnerMatch IncludesNoExec
22 <Limit GET POST OPTIONS>
24 <IfModule mod_access_compat.c>
29 <LimitExcept GET POST OPTIONS>
31 <IfModule mod_access_compat.c>
37 # php_admin_value open_basedir "/home/users:/usr/share/pear:/usr/share/php:/tmp"