InstantSSL untrusted by Firefox [RESOLVED]

Hi,
I installed a SSL certificate to identify my domain (node restify server for API). With chrome 40 all works fine but with Firefox connection is untrust and with Android i have ERR_CERT_AUTHORITY_INVALID. I’ve put COMODORSADomainValidationSecureServerCA.crt, COMODORSAAddTrustCA.crt and AddTrustExternalCARoot.crt in my ca bundle.
What’s wrong ? Thanks

It sounds like the server is not presenting your the CA bundle you made OR it is not presenting all CA certificates correctly. You’re probably best served by opening a support ticket or support chat via https://support.comodo.com

For nodejs and restifyjs, instead of providing CA crt in bundle file you pass an array like this :

var httpsServerOptions = {
key: fs.readFileSync(‘./sslcert/your_private.key’),
ca : [
fs.readFileSync(‘./sslcert/COMODORSADomainValidationSecureServerCA.crt’),
fs.readFileSync(‘./sslcert/COMODORSAAddTrustCA.crt’),
fs.readFileSync(‘./sslcert/AddTrustExternalCARoot.crt’)
],
cert: fs.readFileSync(‘./sslcert/your_certificate.crt’)
};