For more information regarding the security incident at F5, the actions we are taking to address it, and our ongoing efforts to protect our customers, click here.

Forum Discussion

1 Reply

  • You can use this code:

     

    when CLIENT_ACCEPTED { 
        set default_pool [LB::server pool]
    }
    
    when HTTP_REQUEST {
        if {[HTTP::path] equals "/gateway" } {
            pool $default_pool member 10.36.124.4 8087
        } else {
            pool $default_pool
        }
    }