접근제어 ip – 아파치 2.4이상

아파치 2.4이상에서 특정 아이피 차단
OS: centos 7.3

vi /etc/httpd/conf/extra/httpd-vhosts.conf

<Directory /var/www/html/myhome>
Options FollowSymLinks MultiViews
AllowOverride All
<RequireAll>
Require all granted
Require not ip 91.200.12.28
</RequireAll>

</Directory>