We wish to do this URL filtering:-
https://data.abc.com/services/v1/data/identities/124546/images/7890123
- this is allowed
The above url should be allowed on port 443, not on port 80 below
block:-
http://data.abc.com/services/v1/data/identities/124546/images/7890123
where the digits in {identityId} and {imageId} are varible and varible in the number of digits:-
//data.abc.com/services/v1/data//databroker/identities/{identityId}/images/{imageId}
so using Regular Expressions the in URL Filter Rules would it become:-
allow:-
https://data.abc.com/services/v1/data/identities/*/images
block:-
http://data.abc.com/services/v1/data/identities/*/images
are the above 2 Regular Expressions URL filters correct ?