Joel Beckmeyer bf4d0c37ce New package: php8.3-8.3.0
- provide php-runtime vpkg
2023-12-13 12:46:03 -05:00

14 lines
322 B
ApacheConf

# Required modules: dir_module, php8.3_module
<IfModule dir_module>
<IfModule php8.3_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>