]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Apache 2.4 mod_authz_host access example
authorMikael Nordfeldth <mmn@hethane.se>
Wed, 6 Aug 2014 08:31:31 +0000 (10:31 +0200)
committerMikael Nordfeldth <mmn@hethane.se>
Wed, 6 Aug 2014 08:31:31 +0000 (10:31 +0200)
Apache 2.2 -> 2.4 upgrades tend to fail on the "Order allow,deny" bit.

htaccess.sample

index c0b61ee29592540a2a18b0b3d50ca78d706a9d4e..90e18e72e678e68a818b5051d73dd26a0477a937 100644 (file)
@@ -25,6 +25,9 @@
 </IfModule>
 
 <FilesMatch "\.(ini)">
+  # For mod_access_compat in Apache <2.4
   Order allow,deny
-</FilesMatch>
 
+  # Use this instead for Apache >2.4 (mod_authz_host)
+  # Require all denied
+</FilesMatch>