Apache

apache 구동 후 접속 에러

1. 개요

다음과 같은 오류메시지가 나올 경우
ubuntu@server:/home/testserver$ tail -f /var/log/apache2/test.com-error.log
[Mon Oct 30 22:28:33.267156 2017] [authz_core:error] [pid 16485:tid 139851441596160] [client x.x.x.x:51342] AH01630: client denied by server configuration: /home/testserver

 

2. 해결 방법

sudo vi /etc/apache2/apache2.conf

<Directory />
    Options FollowSymLinks
    AllowOverride None
    # Require all denied   ; 주석 처리
    Require all granted   ; 추가
</Directory>

sudo service apache restart

Back To Top