Valentine_96813
Jun 01, 2012Nimbostratus
Pool redirection with SSL passthrough
I need to redirect to another pool if active members<1. The VS is in SSL passthrough. Will this work if I add the HTTP base profile to the VS?
rule SorryPage_redirect2 {
when HTTP_REQUEST {
if { [active_members [LB::server pool]] == 0 } {
pool Sorry-pool}
}
}
I've tried this but it did not work:
rule SorryPage_redirect {
when LB_FAILED{
if { [active_members abc.com-p443-pool] == 0 } {
pool Sorry-pool}
}
}