Technical Forum
Ask questions. Discover Answers.
cancel
Showing results for 
Search instead for 
Did you mean: 

Mix HTTP and HTTP Nodes

Dan44
Altostratus
Altostratus

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?

1 REPLY 1

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 } }