logo
Apache Lounge
Webmasters

 

About Forum Index Downloads Search Register Log in RSS X


Keep Server Online

If you find the Apache Lounge, the downloads and overall help useful, please express your satisfaction with a donation.

or

Bitcoin

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.
Post new topic   Forum Index -> Apache View previous topic :: View next topic
Reply to topic   Topic: Convert "Deny from all" Apache 2.2 to 2.4
Author
Sunburst



Joined: 09 Mar 2012
Posts: 20

PostPosted: Fri 20 Apr '12 19:51    Post subject: Convert "Deny from all" Apache 2.2 to 2.4 Reply with quote

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: 3053
Location: Hilversum, NL, EU

PostPosted: Fri 20 Apr '12 21:03    Post subject: Reply with quote

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


Reply to topic   Topic: Convert "Deny from all" Apache 2.2 to 2.4 View previous topic :: View next topic
Post new topic   Forum Index -> Apache