J'ai installé PHP7 de Remi repo avec
sudo yum -y install httpd
sudo yum -y install epel-release
wget http://rpms.famillecollet.com/enterprise/remi-release-6.rpm
sudo rpm -Uvh remi-release-6*.rpm
sudo yum -y --enablerepo=remi,remi-test install php70
scl enable php70 'php -v'
sudo ln -s /usr/bin/php70 /usr/bin/php
et cela fonctionne via CLI. Maintenant, je veux le faire fonctionner avec apache mais je ne peux pas trouver un afin de passer comme deuxième argument à LoadModule
LoadModule php7_module unknown_path
<FilesMatch \.php$>
SetHandler application/x-httpd-php
</FilesMatch>
Est-ce la bonne approche pour faire fonctionner PHP7 avec apache2?
find / -iname '*php*.so'
:)