Blame SPECS/userdir.conf

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