<VirtualHost *:80>
DocumentRoot /home/xinet/html/
ServerName reject.xinet.kr
CustomLog logs/access_log vcommon env=!CodeRed
<Directory “/home/xinet/html”>
Order deny,allow
Deny from all
Allow from 192.168.0.1 192.168.10.1
</Directory>
</VirtualHost>
위에서 Allow from 만 접속이 허용되고 나머지는 모두 deny
EX 1
Order allow,deny -> Deny는 막고 Allow는 열어준다, 그외 모조리 차단
Allow from 192.168.10.1
Deny from 192.168.15.1
EX2
Order deny,allow —> Allow 열고 Deny는 막고 그외에는 모조리 허용
Allow from 192.168.10.1
Deny from 192.168.15.1
- HOME
- Apache