I have a list req.url matches that are duplicative other than the file
to match. What is the format to combine these?
For instance:
if (req.url ~ "photoupload.cfm") {pass;}
if (req.url ~ "logoupload.cfm") {pass;}
Is there a prescribed way to combine that into one line?
-Paul