WEB - Nginx/설치
PHP 7.4 설치 가이드 (NginX + PHP 환경)
KeuangKuo
2021. 6. 5. 15:03
php-7.4.15 설치 방법 (CENTOS 8)
dnf install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm
rpm -qa | grep epel
dnf install https://rpms.remirepo.net/enterprise/remi-release-8.rpm
rpm -qa | grep remi
dnf module list php
dnf module enable php:remi-7.4
dnf install php php-cli php-common
php-7.4.15 설치 방법 (CENTOS 7)
CENT7 : dnf install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
rpm -qa | grep epel
dnf install https://rpms.remirepo.net/enterprise/remi-release-7.rpm
sudo yum-config-manager --disable remi-php54
sudo yum-config-manager --enable remi-php74
yum -y install php
yum -y install php-fpm
Hello World 예제
<!DOCTYPE html>
<html>
<body>
<?php
echo "Hello World";
?>
</body>
</html>