update settings.php to use shop.fsf.org as baseurl
[eostre.git] / drupal-configs / apache2 / mods-enabled / php7.2.conf
CommitLineData
09c20003 1<FilesMatch ".+\.ph(ar|p|tml)$">
436d9fbf 2 SetHandler application/x-httpd-php
3</FilesMatch>
4<FilesMatch ".+\.phps$">
5 SetHandler application/x-httpd-php-source
6 # Deny access to raw php sources by default
7 # To re-enable it's recommended to enable access to the files
8 # only in specific virtual host or directory
09c20003 9 Require all denied
436d9fbf 10</FilesMatch>
11# Deny access to files without filename (e.g. '.php')
09c20003 12<FilesMatch "^\.ph(ar|p|ps|tml)$">
13 Require all denied
436d9fbf 14</FilesMatch>
15
16# Running PHP scripts in user directories is disabled by default
17#
18# To re-enable PHP in user directories comment the following lines
19# (from <IfModule ...> to </IfModule>.) Do NOT set it to On as it
20# prevents .htaccess files from disabling it.
21<IfModule mod_userdir.c>
22 <Directory /home/*/public_html>
23 php_admin_flag engine Off
24 </Directory>
25</IfModule>