Sunday, May 19, 2019

NGNIX how to specify SSL intermediate cert

The process of specifying intermediate certificate is same across server because it is really done on the crt file. Here is how to be done

First of all verify if there is any issue with the certificate chain by checking in the SSL checker.

https://www.sslshopper.com/ssl-checker.html#hostname=https://mysite.com

Now if the above test specifies that it does not work on certain platforms, we need to do the below to include the intermediate certificates.

https://scottlinux.com/2013/09/02/how-to-configure-ssl-certificate-chain-for-nginx/


$ cp example.com-2013.crt example.com-2013.pem
$ cat intermediate.crt >> example.com-2013.pem


Now that we got the certificate file that includes the chain, specify it is the SSL default file like mentioned in another post.

references:
https://scottlinux.com/2013/09/02/how-to-configure-ssl-certificate-chain-for-nginx/
https://www.sslshopper.com/ssl-checker.html#hostname=https://mysite.com

No comments:

Post a Comment