Forum Discussion

Govind_32899's avatar
Govind_32899
Icon for Nimbostratus rankNimbostratus
Aug 27, 2016

IRULE for SNI is necessary

Single VIP multiple Certificate for three different URL and Multiple pool selection based on the application of individual URL .

 

2 Replies

  • SNI-based cert selection and pool assignment are generally two different things, so if you can do SNI at the VIP, and you are offloading SSL at the VIP, then pool selection can be based on HTTP events:

    when HTTP_REQUEST {    
        switch [string tolower [HTTP::host]] {        
            "foo.site.com" { pool foo_pool }            
            "bar.site.com" { pool bar_pool }            
            "blah.site.com" { pool blah_pool }
        }
    }