Rocky Linux 8.x 에서 dnf 를 이용한 APM 설치
리눅스/APACHE2022. 9. 6. 09:37
반응형
1. APM 설치
1) 아파치 설치
# dnf -y install httpd
2) MySQL 설치
# dnf -y install mysql mysql-server
3) PHP 설치
설치 가능한 PHP 버전 출력
# dnf module list php
원하는 버전으로 모듈 활성화
# dnf module enable php:7.4
설치
# dnf -y install php php-mysqlnd
2. 기본 설정
# vi /etc/httpd/conf/httpd.conf
ServerName 127.0.0.1 DirectoryIndex index.html index.htm index.php AddType application/x-httpd-php .html .htm .php AddType application/x-httpd-php-source .phps |
# vi /etc/php.ini
short_open_tag = On date.timezone = "Asia/Seoul" |
html 확장자 파일에서 사용된 php 코드도 인식할 수 있게 아래 내용을 수정합니다.
# vi /etc/httpd/conf.d/php.conf
<FilesMatch \.(php|phar|html|htm)$> // 두 군데 |
# vi /etc/php-fpm.d/www.conf
security.limit_extensions = // 주석 해제하고 뒤에 .htm .html 추가 |
변경 내용을 적용합니다.
# systemctl restart php-fpm
# systemctl restart httpd
반응형
'리눅스 > APACHE' 카테고리의 다른 글
httpd 2.4 동시접속자 수 제한 상향 조정 (0) | 2023.04.05 |
---|---|
httpd 에서 Redirect 또는 ErrorDocument 설정이 동작하지 않을때 (0) | 2022.10.06 |
Rocky Linux 8.x 에서 Let's encrypt 설치 및 SSL 발급받기 (0) | 2022.09.06 |
Rocky Linux 8.5 에서 Let's Encrypt SSL 발급 및 Lighttpd 적용하기 (0) | 2022.05.24 |
Rocky Linux 8.5 에서 Lighttpd + PHP + MariaDB 설치하기 (0) | 2022.05.24 |
댓글()