Nginx
cat mysite.crt gd_bundle.crt > mysite_combined.crt
thanks to: http://nginx.groups.wuyasea.com/articles/how-to-setup-godaddy-ssl-certificate-on-nginx/2
Tomcat 7
openssl pkcs12 -export -in mycert.crt -inkey <mykey.key> -out <mycert.p12> -name tomcat -CAfile <Entrust_SSL_CA.cer> -caname root -chain
Where:
- <mykey.key> is your current private key.
- <mycert.p12> is your current openssl certificate
- <Entrust_SSL_CA.cer> is the Entrust Secure Server Root CA available for download at the following URL https://www.entrust.net/downloads/root_index.cfm
The exported keystore will be in <mycert.p12>
thanks to: http://www.entrust.net/knowledge-base/technote.cfm?tn=6557