Blame SOURCES/php.conf

37fd76
#
37fd76
# Cause the PHP interpreter to handle files with a .php extension.
37fd76
#
37fd76
<FilesMatch \.php$>
37fd76
    SetHandler application/x-httpd-php
37fd76
</FilesMatch>
37fd76
37fd76
#
37fd76
# Allow php to handle Multiviews
37fd76
#
37fd76
AddType text/html .php
37fd76
37fd76
#
37fd76
# Add index.php to the list of files that will be served as directory
37fd76
# indexes.
37fd76
#
37fd76
DirectoryIndex index.php
37fd76
37fd76
#
37fd76
# Uncomment the following lines to allow PHP to pretty-print .phps
37fd76
# files as PHP source code:
37fd76
#
37fd76
#<FilesMatch \.phps$>
37fd76
#    SetHandler application/x-httpd-php-source
37fd76
#</FilesMatch>
37fd76
37fd76
#
37fd76
# Apache specific PHP configuration options
37fd76
# those can be override in each configured vhost
37fd76
#
37fd76
php_value session.save_handler "files"
37fd76
php_value session.save_path    "/var/lib/php/session"
37fd76
php_value soap.wsdl_cache_dir  "/var/lib/php/wsdlcache"