Anyone have any luck with making httpd use rh-php56 from the Red Hat Software Collections?
I see documentation on how to enable the newer version of php at the CLI...but not for making Apache use the new version of PHP installed via the rh-php56 package.
(I should clarify -- this is for a RHEL 7.x box)
rh-php56 provides mod_php only for httpd24 (not for base system)
Simpler way is to use php-fpm (which also allow to run apache in threaded mode)
See:
To summarize above post, use in /etc/httpd/conf.d/php.conf
# Redirect to local php-fpm is mod_php not available
<IfModule !mod_php5.c>
<FilesMatch \.php$>
SetHandler "proxy:fcgi://127.0.0.1:9000"
</FilesMatch>
</IfModule>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With