Nov 02, 2011
use ssl profile in an IRule
Hello Community,
If you have a SSL VS that points to an pool that contains http 80 and https 443, is there a way to direct traffic to the 443 member and use an ssl profile? I do NOT want to set the ssl PROFILE on the VS level because it would cause the http traffic NOT to work; and we need the http traffic to work on the SSL VS with exception of the below if condition.
ex)
HTTP_REQUEST {
....
if { ([string tolower [HTTP::uri]] contains "employee/") or
([string tolower [HTTP::uri]] contains "employee%2f") } {
use SSL profile here
pool x_Pool member 192.168.11.58 443
return
}
....
}
Thanks in advance.
Regards,
TRX