04-Feb-2021 08:07
Hi everyone, I have a special use case and I am not sure if it works like this. Maybe someone already has experience with it.
I have a virtual server with port 443. There is a client SSL profile configured and the default pool contains nodes with port 80. Everything works so far. But now I need to add an iRule that sends request containing /api, to a pool that has nodes with port 443. I keep getting timeouts. Does anyone have such a combination in use?
04-Feb-2021 08:32
Hi Dan44,
Assign serverssl profile to VS.
Change the iRule according to your need and assign it.
when HTTP_REQUEST {
if { [HTTP::uri] starts_with "/api" } {
pool poolA
}
else {
SSL::disable serverside
pool poolB
}
}