summarylogtreecommitdiffstats
path: root/php-apache.conf
blob: e74ae8d9b7a882d760e63fae7dc842252e31a200 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# Required modules: dir_module, @MODULE@

<IfModule dir_module>
    <IfModule @MODULE@>
        DirectoryIndex index.php index.html
        <FilesMatch "\.php$">
            SetHandler application/x-httpd-php
        </FilesMatch>
        <FilesMatch "\.phps$">
            SetHandler application/x-httpd-php-source
        </FilesMatch>
    </IfModule>
</IfModule>