How can I configure tomcat to use a single certificate but use multiple aliases?
I found this thread but I think this is not the case for my situation.
Using multiple SSL certificates in Tomcat 7
Our system admin has requested a single certificate that supports multiple URL aliases.
In my Tomcat setting, this is the configuration:
<Connector port="443" protocol="org.apache.coyote.http11.Http11Protocol" SSLEnabled="true"
maxThreads="150" scheme="https" secure="true"
clientAuth="false" sslProtocol="TLS"
keystoreFile="C:\Program Files\Apache Software Foundation\Tomcat 7.0\www.url.com.jks"
keystorePass="pass"
keyAlias="www.url.com" />
This is the only setting I know for single SSL certificate and one alias. Any thoughts?