Forum Discussion

steven_normole's avatar
Mar 23, 2026

APM checking for URI

I have created an APM policy that checks to is it the URI contains a specific URI.  If the URI is anything else then the fallback is to send the traffic.

 

example: https://www.fubar.com/admin - the APM is looking for /admin and if present the traffic will then go to the next step is certificate prompt

 

if the URI contains anything else use the fallback to continue.  For example https://www.fubar.com/documents/invenioHealth the APM would use the fallback and just let the traffic pass

 

https://www.fubar.com/documents/invenioHealth in this case the F5 is sending a 302, instead of just sending the traffic through and then sends a FIN/ACK back to the source.

1 Reply

  • Hello steven_normole​ 

    You should better just disable APM for unmatched uris

    try something like this

    when HTTP_REQUEST {
        if { ![[HTTP::uri] starts_with "/admin"] } {
            ACCESS::disable
        }
    }