Keep Server Online
If you find the Apache Lounge, the downloads and overall help useful, please express your satisfaction with a donation.
or
A donation makes a contribution towards the costs, the time and effort that's going in this site and building.
Thank You! Steffen
Your donations will help to keep this site alive and well, and continuing building binaries. Apache Lounge is not sponsored.
| |
|
Topic: Convert "Deny from all" Apache 2.2 to 2.4 |
|
Author |
|
Sunburst
Joined: 09 Mar 2012 Posts: 20
|
Posted: Fri 20 Apr '12 19:51 Post subject: Convert "Deny from all" Apache 2.2 to 2.4 |
|
|
Hi
Does anyone know how to convert this from Apache 2.2 to 2.4 settings?
Code: | # Prevent .htaccess and .htpasswd files from being viewed by Web clients.
<FilesMatch "^\.ht">
Order allow,deny
Deny from all
</FilesMatch> |
Some also use "Satisfy All" while most don't. What does "Satisfy All" do in this relation? |
|
Back to top |
|
Steffen Moderator
Joined: 15 Oct 2005 Posts: 3092 Location: Hilversum, NL, EU
|
Posted: Fri 20 Apr '12 21:03 Post subject: |
|
|
From the httpd.conf:
#
# The following lines prevent .htaccess and .htpasswd files from being
# viewed by Web clients.
#
<Files ".ht*">
Require all denied
</Files>
Satisfy is deprecated by the new authz re-factoring, see http://httpd.apache.org/docs/2.4/mod/mod_access_compat.html . With mod_access_compat you can still use the old ones for the time being.
Steffen |
|
Back to top |
|
|
|
|
|
|