WEB
[apache] IP주소로 접속 시 차단 방법
꼬장e
2021. 4. 7. 17:18
apache 에서 특정 ip 접속 제어를 하기위해 httpd.conf 또는 httpd-vhosts.conf 수정
<VirtualHost *:80>
ServerName xxx.xxx.xxx.xxx ##자신의 IP주소
<Location>
Order deny, allow
Deny from all
</Location>
</VirtualHost>