apache 에서 특정 ip 접속 제어를 하기위해 httpd.conf 또는 httpd-vhosts.conf 수정

<VirtualHost *:80>

    ServerName xxx.xxx.xxx.xxx  ##자신의 IP주소

    <Location>

        Order deny, allow

        Deny from all

    </Location>

</VirtualHost>

Posted by 꼬장e
,