Blame SOURCES/php.conf

de2dbd
#
de2dbd
# The following lines prevent .user.ini files from being viewed by Web clients.
de2dbd
#
de2dbd
<Files ".user.ini">
de2dbd
    <IfModule mod_authz_core.c>
de2dbd
        Require all denied
de2dbd
    </IfModule>
de2dbd
    <IfModule !mod_authz_core.c>
de2dbd
        Order allow,deny
de2dbd
        Deny from all
de2dbd
        Satisfy All
de2dbd
    </IfModule>
de2dbd
</Files>
de2dbd
de2dbd
#
de2dbd
# Allow php to handle Multiviews
de2dbd
#
de2dbd
AddType text/html .php
de2dbd
de2dbd
#
de2dbd
# Add index.php to the list of files that will be served as directory
de2dbd
# indexes.
de2dbd
#
de2dbd
DirectoryIndex index.php
de2dbd
de2dbd
# mod_php options
de2dbd
<IfModule  mod_php7.c>
de2dbd
    #
de2dbd
    # Cause the PHP interpreter to handle files with a .php extension.
de2dbd
    #
de2dbd
    <FilesMatch \.php$>
de2dbd
        SetHandler application/x-httpd-php
de2dbd
    </FilesMatch>
de2dbd
de2dbd
    #
de2dbd
    # Uncomment the following lines to allow PHP to pretty-print .phps
de2dbd
    # files as PHP source code:
de2dbd
    #
de2dbd
    #<FilesMatch \.phps$>
de2dbd
    #    SetHandler application/x-httpd-php-source
de2dbd
    #</FilesMatch>
de2dbd
de2dbd
    #
de2dbd
    # Apache specific PHP configuration options
de2dbd
    # those can be override in each configured vhost
de2dbd
    #
de2dbd
    php_value session.save_handler "files"
de2dbd
    php_value session.save_path    "/var/lib/php/session"
de2dbd
    php_value soap.wsdl_cache_dir  "/var/lib/php/wsdlcache"
de2dbd
de2dbd
    #php_value opcache.file_cache   "/var/lib/php/opcache"
de2dbd
</IfModule>