Forum Discussion

Dan44's avatar
Dan44
Icon for Altostratus rankAltostratus
Feb 04, 2021

Mix HTTP and HTTP Nodes

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

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