아파치 Directory index forbidden by Options directive 에러메세지
Directory index forbidden by Options directive: /home/example/www/testdir/
이런 에러 메시지가 error_log 에 기록된다면 크게 신경쓸 일은 아닌 것 같다.
URL 호출시 아파치 설정파일에 DirectoryIndex 설정에서 정의된 파일이 없으면 에러 로그에 기록이 된다.
DirectoryIndex index.html index.php index.html.var
http://www.example.com/testdir 로 url 을 열었을때 해당 디렉토리에 위의 파일을 찾지 못하면 에러로 기록 된다는 의미이다.
<Directory "/home/*/www">
...
Options Indexes FollowSymLinks
...
</Directory>
위 처럼 설정해서 에러가 기록되지 않고 해당 디렉토리의 리스트를 보여줄 수도 있지만 보안상 좋지 않기 때문에
Indexes 는 안 넣어주는게 맞는 것 같다.
'LINUX' 카테고리의 다른 글
리눅스 모니터링툴 htop (0) | 2016.10.04 |
---|---|
DNS 라운드로빈 로드밸런싱 방법 (0) | 2016.09.09 |
아파치 AH00558 워닝 해결 (0) | 2016.09.06 |
CentOS 7.x 아파치 재시작 명령어 (0) | 2016.09.06 |
아파치 deflate 압축기능 활성화 상태에서 php ob_start 속도 테스트 (0) | 2016.09.05 |