728x90
아파치 보안설정 - 파일목록 숨기기
/usr/local/apache/conf/httpd.conf 파일의
DocumentRoot 옵션아래
<Directory "/usr/local/src">
Options Indexes FollowSymLinks
</Directory>
로 되어 있습니다.
위의 경우는 해당 디렉토리내에 index.html .htm .php 등의
파일이 없는경우 해당 디렉토리의 파일 목록을 리스트업 해서 보여줍니다.
아래와 같이 수정합니다.
<Directory "/usr/local/src">
Options Includes NoExec
</Directory>
위와 같이 수정 후 아파치 프로세스를 재가동 합니다.
# /usr/local/apache/bin/apchectl restart
'WEB & WAS > Apache' 카테고리의 다른 글
Rocky Linux 8 Apache 패키지 업그레이드 (0) | 2023.03.27 |
---|---|
Apache SSL 인증서 비밀번호 자동입력하기 (0) | 2023.03.26 |
Apache 기본페이지 설정 및 디렉토리 리스팅 설정 (0) | 2023.03.12 |
Apache mod_url 설정 (0) | 2023.03.12 |
restart 와 graceful 의 차이점(restart, reload 차이점) (0) | 2023.03.12 |
댓글