> Actually this works for me: > > Define multiple tls keypairs in your protocol block, such as > > http protocol "https" { > > tls keypair "www.somesite.com" > tls keypair "www.othersite.net" > tls keypair "api.sites.org" > > pass request quick header "Host" value "www.somesite.com" forward to > <somesite> > pass request quick header "Host" value "www.othersite.net" forward > to <othersite> > pass request quick header "Host" value "api.sites.org" forward to > <sites> > > > [...] > > }
Right, thanks. Upon closer reading it seems the man page does mention this, but I didn't notice while grepping for things like "SNI" and "Server Name Identification", etc. Seems to be exactly what I want. Cheers.