apache error log
1 |
[Thu Jul 25 08:20:24.977393 2024] [proxy_fcgi:error] [pid 11882:tid 140135270160128] [client 192.168.100.80:24733] AH01071: Got error 'Access to the script '/home/xinet/html/index.html' has been denied (see security.limit_extensions)' |
위와 같이 홈페이지에서 index.htm / index.php가 자동으로 불러오지 못해서 에러가 발생
해당 서버는 php-fpm yum으로 설치된 서버이며
해결방법은 php-fpm www.conf 파일 수정
1 2 3 4 |
[root@rocky8-web1 html]# vi /etc/php-fpm.d/www.conf ## 주석해제 후 내용수정 security.limit_extensions = .php .php3 .php4 .php5 .php7 .html .htm |
4. php-fpm 및 apache 재시작
1 2 |
[root@rocky8-web1 html]# systemctl restart php-fpm [root@rocky8-web1 html]# systemctl restart httpd |
5. 정상적으로 index.html / index.php가 불러온다