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