Kristyna Streitova
d7b41eca02
- access_compat now built as shared and disabled by default - amend config to use also old syntax when access_compat is loaded - added apache2-README-access_compat.txt - added apache-find-directive script - see [bnc#896083] and its duplicates OBS-URL: https://build.opensuse.org/request/show/308624 OBS-URL: https://build.opensuse.org/package/show/Apache/apache2?expand=0&rev=446
56 lines
1.5 KiB
Plaintext
56 lines
1.5 KiB
Plaintext
#
|
|
# UserDir: The name of the directory that is appended onto a user's home
|
|
# directory if a ~user request is received.
|
|
#
|
|
|
|
<IfModule mod_userdir.c>
|
|
# Note that the name of the user directory ("public_html") cannot easily be
|
|
# changed here, since it is a compile time setting. The apache package
|
|
# would have to be rebuilt. You could work around by deleting
|
|
# /usr/sbin/suexec, but then all scripts from the directories would be
|
|
# executed with the UID of the webserver.
|
|
#
|
|
# To rebuild apache with another setting you need to change the
|
|
# %userdir define in the spec file.
|
|
|
|
# not every user's directory should be visible:
|
|
UserDir disabled root
|
|
|
|
# to enable UserDir only for a certain set of users, use this instead:
|
|
#UserDir disabled
|
|
#UserDir enabled user1 user2
|
|
|
|
|
|
# the UserDir directive is actually used inside the virtual hosts, to
|
|
# have more control
|
|
#UserDir public_html
|
|
|
|
<Directory /home/*/public_html>
|
|
|
|
AllowOverride FileInfo AuthConfig Limit Indexes
|
|
Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
|
|
|
|
<Limit GET POST OPTIONS PROPFIND>
|
|
<IfModule !mod_access_compat.c>
|
|
Require all granted
|
|
</IfModule>
|
|
<IfModule mod_access_compat.c>
|
|
Order allow,deny
|
|
Allow from all
|
|
</IfModule>
|
|
</Limit>
|
|
|
|
<LimitExcept GET POST OPTIONS PROPFIND>
|
|
<IfModule !mod_access_compat.c>
|
|
Require all denied
|
|
</IfModule>
|
|
<IfModule mod_access_compat.c>
|
|
Order deny,allow
|
|
Deny from all
|
|
</IfModule>
|
|
</LimitExcept>
|
|
|
|
</Directory>
|
|
|
|
</IfModule>
|