Without adding WITH_MPM=event into make.conf the build will fail when using poudriere. This is currently documentend in /Mk/Uses/php.mk. Since users do not investigate the framework code, we add the notice to avoid future confusion. PR: 214943 Reported by: rainer@ultra-secure.de, ohartmann@walstatt.org Approved by: mentors (implicit)
19 lines
624 B
Modula-2
19 lines
624 B
Modula-2
*********************************************************************
|
|
|
|
Make sure index.php is part of your DirectoryIndex.
|
|
|
|
You should add the following to your Apache configuration file:
|
|
|
|
<FilesMatch "\.php$">
|
|
SetHandler application/x-httpd-php
|
|
</FilesMatch>
|
|
<FilesMatch "\.phps$">
|
|
SetHandler application/x-httpd-php-source
|
|
</FilesMatch>
|
|
|
|
*********************************************************************
|
|
|
|
If you are building PHP-based ports in poudriere(8) with ZTS enabled,
|
|
add WITH_MPM=event to /etc/make.conf to prevent build failures.
|
|
|
|
*********************************************************************
|