summaryrefslogtreecommitdiffstats
path: root/php.conf
diff options
context:
space:
mode:
authorRemi Collet <fedora@famillecollet.com>2014-04-08 18:30:07 +0200
committerRemi Collet <fedora@famillecollet.com>2014-04-08 18:30:07 +0200
commit2a986cc7ff0e927f0264ca32699d19396ea874a8 (patch)
treeb9a915336996e2e498a1b8be3a49de01fb234e00 /php.conf
parentb1dc4792f5abc0b42c72b9a5d579abe3246cb4d0 (diff)
php 5.6: numerical prefix, .user.ini, ifmodule
Diffstat (limited to 'php.conf')
-rw-r--r--php.conf55
1 files changed, 36 insertions, 19 deletions
diff --git a/php.conf b/php.conf
index 7000043..730867e 100644
--- a/php.conf
+++ b/php.conf
@@ -1,9 +1,16 @@
#
-# Cause the PHP interpreter to handle files with a .php extension.
-#
-<FilesMatch \.php$>
- SetHandler application/x-httpd-php
-</FilesMatch>
+# The following lines prevent .user.ini files from being viewed by Web clients.
+#
+<Files ".user.ini">
+ <IfModule mod_authz_core.c>
+ Require all denied
+ </IfModule>
+ <IfModule !mod_authz_core.c>
+ Order allow,deny
+ Deny from all
+ Satisfy All
+ </IfModule>
+</Files>
#
# Allow php to handle Multiviews
@@ -16,18 +23,28 @@ AddType text/html .php
#
DirectoryIndex index.php
-#
-# Uncomment the following lines to allow PHP to pretty-print .phps
-# files as PHP source code:
-#
-#<FilesMatch \.phps$>
-# SetHandler application/x-httpd-php-source
-#</FilesMatch>
+# mod_php options
+<IfModule mod_php5.c>
+ #
+ # Cause the PHP interpreter to handle files with a .php extension.
+ #
+ <FilesMatch \.php$>
+ SetHandler application/x-httpd-php
+ </FilesMatch>
-#
-# Apache specific PHP configuration options
-# those can be override in each configured vhost
-#
-php_value session.save_handler "files"
-php_value session.save_path "/var/lib/php/session"
-php_value soap.wsdl_cache_dir "/var/lib/php/wsdlcache"
+ #
+ # Uncomment the following lines to allow PHP to pretty-print .phps
+ # files as PHP source code:
+ #
+ #<FilesMatch \.phps$>
+ # SetHandler application/x-httpd-php-source
+ #</FilesMatch>
+
+ #
+ # Apache specific PHP configuration options
+ # those can be override in each configured vhost
+ #
+ php_value session.save_handler "files"
+ php_value session.save_path "/var/lib/php/session"
+ php_value soap.wsdl_cache_dir "/var/lib/php/wsdlcache"
+</IfModule>