wifky!
PHP7
curl https://www.php.net/distributions/php-7.4.33.tar.gz -o php-7.4.33.tar.gz
tar -xzvf php-7.4.33.tar.gz
cd /root/php-7.4.33
dnf -y install httpd-devel libxml2-devel oniguruma-devel sqlite-devel
./configure --with-apxs2=/usr/bin/apxs
make install
--without-libxml とか --without-readline とか --without-readline とかでいろいろ削れねーかな
--enable-mbstringが認識されないオプションとか出るけどなんなんだろう。
cat <<EOF > /etc/httpd/conf.d/php.conf
LoadModule php7_module modules/libphp7.so
<FilesMatch \.php$>
SetHandler application/x-httpd-php
</FilesMatch>
EOF