Forum Discussion
PK_294685
Apr 07, 2017Nimbostratus
Enable Request Adapt for Specific uri's
Hello Folks,
I'm having trouble configuring a Request Adapt profile for a specific uri's.
Here is the scenario:
I have a VIP that redirects different uri's to different Pools.
On...
samstep
Apr 09, 2017Cirrocumulus
You need an iRule which only enables the Request Adaptation when the URI matches the URI of file upload and disables it for all other URI otherwise all requests are going to go though ICAP, perhaps something like this:
when HTTP_REQUEST {
if {([HTTP::method] eq "POST") && ([HTTP::uri] starts_with "/doc/upload/") } {
ADAPT::enable true
} else {
ADAPT::enable false
}
}
Recent Discussions
Related Content
DevCentral Quicklinks
* Getting Started on DevCentral
* Community Guidelines
* Community Terms of Use / EULA
* Community Ranking Explained
* Community Resources
* Contact the DevCentral Team
* Update MFA on account.f5.com
Discover DevCentral Connects