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

<Connector port="8443" protocol="HTTP/1.1" SSLEnabled="true"
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