How to implement wildcard Loadbalancer SSL certeficate on Tomcat?

i have SSL certificate with extension .CRT , this is Domain Certificate (wildcard) and we have Web server in this domain(Apache tomcat) have HTTPS ena

i have SSL certificate with extension .CRT , this is Domain Certificate (wildcard) and we have Web server in this domain(Apache tomcat) have HTTPS enabled by default with the following connector

maxThreads="300" scheme="https" secure="true"
maxHttpHeaderSize="32768"
clientAuth="false" sslProtocol="TLS"
ciphers="SSL_RSA_WITH_RC4_128_MD5,SSL_RSA_WITH_RC4_128_SHA,TLS_RSA_WITH_AES_128_CBC_SHA,TLS_DHE_RSA_WITH_AES_128_CBC_SHA,TLS_DHE_DSS_WITH_AES_128_CBC_SHA,SSL_RSA_WITH_3DES_EDE_CBC_SHA,SSL_DHE_RSA_WITH_3DES_EDE_CBC_SHA, SSL_DHE_DSS_WITH_3DES_EDE_CBC_SHA"
keystoreFile="C:\Program Files\tomcat/conf/keystore.p12"
keystorePass="defaulltpassword"
keystoreType="PKCS12"
keyAlias="tomcat"
truststoreFile="C:\Program Files\tomcat/conf/cacerts.p12"
truststorePass="changeit"
truststoreType="PKCS12" />
please advice what is the changes needed to apply the certificate on this connector as we are receiving security exception .

thank you

or:i have SSL certificate with extension .CRT , this is Domain Certificate (wildcard) and we have Web server in this domain(Apache tomcat) have HTTPS enabled by default with the following connectorplease advice what is the changes needed to apply the certificate on this connector as we are receiving security exception .thank you

Tags:web,domain,extension,