아파치(Apache) 폴더 및 파일에 대해 IP 제한하기
웹 서버 운용 시 일어 날 수 있는 상황입니다. 방법은 아주 간단합니다.
먼저 httpd.conf 파일을 열어주세요.
[root@localhost ~]# vim /etc/httpd/conf/httpd.conf
폴더 접근 제한
<Directory 폴더경로> Order Allow, Deny Deny from all Allow from 아이피 아이피 아이피 </Directory>
파일 접근 제한
<Directory 폴더경로> <Files 파일이름(확장자포함)> Order Allow, Deny Deny from all Allow from 아이피 아이피 아이피 </Files> </Directory>
서버 재시작
[root@localhost ~]# service httpd restart
'Linux' 카테고리의 다른 글
아파치(Apache)::httpd: Could not reliably determine the server's fully qualified domain name 메시지 해결 방법 (0) | 2015.07.06 |
---|---|
Redis Replication을 위한 Master-Slave 설정 방법 (0) | 2015.07.03 |
Redis Service Stop::(error) NOAUTH Authentication required (0) | 2015.07.01 |
리눅스(linux) CentOS 에 Remi 설치 방법 (0) | 2015.06.30 |
리눅스(linux) CentOS 에 Redis 설치 하는 방법 (0) | 2015.06.30 |