I need to allow the whole world access to https://www.example.com/ but
only one host (src_ip) access to https://www.example.com/service/.
What's the map rules needed to implement this?
Shouldn't something like this be the way to do it?
map https://www.example.com/service/
http://backend.example.com/service/ @action=allow @src_ip=8.8.8.8
@action=deny @src_ip=0.0.0.1-254.254.254.254
map https://www.example.com/ http://backend.example.com/
Unfortunately I don't seem to be able to get this to work? BTW what
are the order @action and @src_ip should be listed in?
-jf