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