Forum Discussion

Brian_Dantzig's avatar
Brian_Dantzig
Icon for Nimbostratus rankNimbostratus
Aug 28, 2009

Selectivly send requests to encrypted or non-encrypted pools

I have a web page that populates a framset with objects from two different pools. One is an encrypted (ssl) connection and the other is unencrypted.

 

My virtual server has both client ssl and server ssl profiles. The default pool is set to the pool with the encrypted servers.

 

It appears that once the ssl is disabled for the unencrypted server, it also turns off ssl for the encrypted server.

 

.

 

 

when HTTP_REQUEST {

 

if { ([HTTP::path] starts_with "/irj") } {

 

pool test-pool

 

}

 

}

 

when SERVER_CONNECTED {

 

if {[LB::server pool] == "test-pool"} {

 

{SSL::disable}

 

}

 

}

1 Reply