annotate sites/default/files/php/twig/5ae1a97e5eec7_block--system-menu-block._1mrraq57epVEwI8rbKEg2iw1y/.htaccess @ 16:c2387f117808

Routine composer update
author Chris Cannam
date Tue, 10 Jul 2018 15:07:59 +0100
parents
children
rev   line source
Chris@16 1 # Deny all requests from Apache 2.4+.
Chris@16 2 <IfModule mod_authz_core.c>
Chris@16 3 Require all denied
Chris@16 4 </IfModule>
Chris@16 5
Chris@16 6 # Deny all requests from Apache 2.0-2.2.
Chris@16 7 <IfModule !mod_authz_core.c>
Chris@16 8 Deny from all
Chris@16 9 </IfModule>
Chris@16 10 # Turn off all options we don't need.
Chris@16 11 Options -Indexes -ExecCGI -Includes -MultiViews
Chris@16 12
Chris@16 13 # Set the catch-all handler to prevent scripts from being executed.
Chris@16 14 SetHandler Drupal_Security_Do_Not_Remove_See_SA_2006_006
Chris@16 15 <Files *>
Chris@16 16 # Override the handler again if we're run later in the evaluation list.
Chris@16 17 SetHandler Drupal_Security_Do_Not_Remove_See_SA_2013_003
Chris@16 18 </Files>
Chris@16 19
Chris@16 20 # If we know how to do it safely, disable the PHP engine entirely.
Chris@16 21 <IfModule mod_php5.c>
Chris@16 22 php_flag engine off
Chris@16 23 </IfModule>