Forum Discussion

mnady_160178's avatar
mnady_160178
Icon for Nimbostratus rankNimbostratus
Mar 04, 2018

iRule to configure ssl offloading for SITE A and Site B and everything else should Passthrough

Dears,

 

I have a requirement to configure ssl offloading for SITE A and Site B and everything else should Passthrough any idea please to implement it using iRule?

 

  • JG's avatar
    JG
    Icon for Cumulonimbus rankCumulonimbus

    Or could the following be what you need:

    when HTTP_REQUEST {
        switch -- [HTTP::host] {
            "site1.com" -
            "site2.com" {
                SSL::disable serverside
            }
        }
    }
    

    ?