PKGBUILDs/extra/php7/apache.conf

14 lines
318 B
ApacheConf
Raw Normal View History

2021-01-29 01:13:57 +00:00
# Required modules: dir_module, php7_module
<IfModule dir_module>
<IfModule php7_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>