PKGBUILDs/extra/php-legacy/apache.conf
2023-01-14 19:37:24 +00:00

14 lines
330 B
ApacheConf

# Required modules: dir_module, php-legacy_module
<IfModule dir_module>
<IfModule php-legacy_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>