Forum Discussion
Albert__Tase_70
Nimbostratus
Mar 19, 2008ssl persistance and base on uri contents
Is there a way to use irule like this
when https request comes in to vip if the request contains x in the uri use ssl persit profile and use pool x
else use pool y
???? ...
The_Bhattman
Nimbostratus
Mar 19, 2008Another alternative code would look like the following:
when HTTP_REQUEST {
switch [HTTP::uri] {
"x" {
persist ssl [SSL::sessionid] 1800
pool poolx
}
"y" { pool pooly }
}
}
or
when HTTP_REQUEST {
if { [HTTP::uri] eq "x" } {
persist ssl [SSL::sessionid] 1800
pool poolx
} else { pool Pooly }
}
thanks
/CB
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