Security certificate

Joined
Dec 27, 2017
Messages
3,825
Reputation
1,631
Daps
12,094
I'm not having cert issues :whitemjpls:

Depends on the browser. Everything looks okay in mobile browsers (green padlock). But, on desktop, they're complaining (
circle-with-i.png
on Chrome & yellow triangle over padlock on Firefox in the address bar). As stated, the chain of trust is broken. Every time that a browser makes an SSL handshake, your browser has to download the intermediate certificate from the CA. That's an unnecessary RTT (round-trip time) added to communication between the website and a browser.

An example of what a properly chained SSL cert looks like this in ascii:
-----BEGIN CERTIFICATE-----
498D0W9E034R90F90S9032Q9054
-----END CERTIFICATE-----
-----BEGIN CERTIFICATE-----
58F8294895489SR83J29RJF8E9J3
-----END CERTIFICATE-----

The Coli's looks like this:
-----BEGIN CERTIFICATE-----
498D0W9E034R90F90S9032Q9054
-----END CERTIFICATE-----

It's missing the intermediate. That gets you a B grade in any standard SSL checker.
 
Top