906948
#
906948
# UserDir: The name of the directory that is appended onto a user's home
906948
# directory if a ~user request is received.
906948
#
906948
# The path to the end user account 'public_html' directory must be
906948
# accessible to the webserver userid.  This usually means that ~userid
906948
# must have permissions of 711, ~userid/public_html must have permissions
906948
# of 755, and documents contained therein must be world-readable.
906948
# Otherwise, the client will only receive a "403 Forbidden" message.
906948
#
906948
<IfModule mod_userdir.c>
906948
    #
906948
    # UserDir is disabled by default since it can confirm the presence
906948
    # of a username on the system (depending on home directory
906948
    # permissions).
906948
    #
906948
    UserDir disabled
906948
906948
    #
906948
    # To enable requests to /~user/ to serve the user's public_html
906948
    # directory, remove the "UserDir disabled" line above, and uncomment
906948
    # the following line instead:
906948
    # 
906948
    #UserDir public_html
906948
</IfModule>
906948
906948
#
906948
# Control access to UserDir directories.  The following is an example
906948
# for a site where these directories are restricted to read-only.
906948
#
906948
<Directory "/home/*/public_html">
906948
    AllowOverride FileInfo AuthConfig Limit Indexes
906948
    Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
906948
    Require method GET POST OPTIONS
906948
</Directory>
906948