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