Monday, January 19, 2009

Apache - Filter IP

c:\Program Files\Apache Software Foundation\Apache2.2\conf\mod-jk.conf

# filter access ip
<Location /test/abc/ >
JkMount pbgota
Order deny,allow
Deny from all
Allow from 127.0.0.1
</Location>

<Location /test/abc/* >
JkMount pbgota
Order deny,allow
Deny from all
Allow from 127.0.0.1
</Location>

No comments: