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