Forum Discussion
ABHAY_101908
Nimbostratus
Nov 03, 2009ProxyPass Irule --- reverse proxy
Dear all:
I am trying to replace my existing reverse proxy functionality from my apache to BIG-IP LTM.
Can any one help me out how to add the config in the proxypass v10 ir...
hoolio
Cirrostratus
Nov 14, 2011Or if you're just trying to map requests to /directories/ to a separate pool, you could use an iRule like this:
when CLIENT_ACCEPTED {
Save the name of the VS default pool
set default_pool [LB::server pool]
}
when HTTP_REQUEST {
Check the requested URI
switch -glob [HTTP::uri] {
"/directories/*" {
pool directories_pool
}
default {
pool $default_pool
}
}
} Aaron
Help guide the future of your DevCentral Community!
What tools do you use to collaborate? (1min - anonymous)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