PKGBUILDs/extra/php/apache.conf

14 lines
316 B
ApacheConf
Raw Normal View History

2021-01-29 01:12:46 +00:00
# Required modules: dir_module, php_module
2020-08-08 18:44:19 +00:00
<IfModule dir_module>
2021-01-29 01:12:46 +00:00
<IfModule php_module>
2020-08-08 18:44:19 +00:00
DirectoryIndex index.php index.html
<FilesMatch "\.php$">
SetHandler application/x-httpd-php
</FilesMatch>
<FilesMatch "\.phps$">
SetHandler application/x-httpd-php-source
</FilesMatch>
</IfModule>
</IfModule>