I am trying to configure Tomcat to serve the same content to two different domains with different SSL certificates but the same IP address. I have created two connectors however even though the domain is different I am getting the following error on startup:
Caused by: java.net.BindException: Address already in use
Is it even possible to allow tomcat to serve two domains, with different SSL certificates on the same IP address?
Answer
According to the docs here Tomcat 8.5 supports SNI
Alternatively, you could add subject alternative name extensions for the additional host names you want to cover.
Comments
Post a Comment