Jetty 9 hosting multiple virtual host with multiple SSL certificate

Viewed 801

I used a ubuntu server 16.04 and jetty 9.3 to deploy multiple virtual host. Every virtual host has a different domain and a different SSL certificate. Now only one virtual host with ssl works. I searched a lot on google and stackoverflow, it says TLS SNI or jetty connectors can do this.But I don't know how to config.

1 Answers

There is no special configuration needed for SNI (aside from enabling the ssl module in the distribution) - your keystore simply needs to contain multiple certificates.

(Copied from this comment because this is the answer)

Related