Forum Discussion
- nitassEmployeedo you mean if you have 4 more paths like /bac to filter?
when HTTP_REQUEST { switch -glob [string tolower [HTTP::path]] { "/bac*" { do something } "/111111*" { do something } "/222222*" { do something } "/333333*" { do something } "/444444*" { do something } } }
- Joe_Gorman_4645NimbostratusCorrect. In the example you provided, I need to allow access to the last 4 paths from the private_nets datagroup only, and the other path would remain open to everyone. Thanks for your guidance and I'll begin the tweaking to make it work for me.