특정 디렉토리에 특정 아이피만 허용
<Directory "/디렉토리/디렉토리/특정디렉토리">
Order deny,allow ### deny,allow 순서 중요함 여기서는 deny 정책 먼저하고 allow 정책을 나중에
Deny from all ### all 을 deny 하고
Allow from 1.1.1.1 2.2.2.2 ### 1.1.1.1 2.2.2.2 를 allow 해준다
</Directory>
반대로 특정 디렉토리에 특정 아이피만 제한할려면
<Directory "/디렉토리/디렉토리/특정디렉토리">
Order allow,deny ### allow 정책을 먼저 써준다
Deny from 1.1.1.1 ### 특정 1.1.1.1 deny 하고
Allow from all ### all을 allow 해준다.
</Directory>
'job > apache' 카테고리의 다른 글
Additionally, a 400 Bad Request error was encountered while trying to use an ErrorDocument to handle the request. (1) | 2020.03.30 |
---|---|
centos5 apache2 geoip 모듈 올리기 (0) | 2019.05.22 |
apache 오래된 버전 이전 (0) | 2018.09.03 |
아파치 모듈 설명 (0) | 2018.09.03 |
apache module forensic log 설정 (0) | 2018.08.31 |