Allow few pages based on IPs
Hi Team,
We are trying to allow/restrict few page access based on IP adress. Requirement is if user is connected with VPN, can access resource /content/mysite/us/en/private/*, if not connected, it should give 403 to all.
What we tried as below but its not working. Although IP address is correct in our real filter.
/filter {
........................
......................
/0110 {
/type "deny"
/path "/content/mysite/us/en/private/*"
/ips {
"0.0.0.0/0"
}
}
/0111 {
/type "allow"
/glob "/content/mysite/us/en/private/*"
/ips {
"192.0.0.0/8"
}
}
}
