Godaddy SSL Certificate untrusted

Source: Internet
Author: User
Tags godaddy ssl certificate

If you deploy a Godaddy certificate using the online tutorial, the certificate is untrusted.

Browsers with strict review will block or require exceptions. The situation is as follows:

The Online Certificate Test Tool prompts that the content of the root certificate is empty. As a result, the certificate is untrusted.

The solution is as follows:

After the purchase is complete, download and unzip, there are two files in the directory, one is the certificate, the other gd_bundle-g2-g1.crt

Configure nginx now

ssl on;ssl_certificate /ssl_location/yourdomain.com.crt;ssl_certificate_key /ssl_location/yourdomain.com.key;

An error occurs when Firefox is used.

It is assumed that the certificate chain is broken.

Google, it is indeed the certificate chain is broken, you need to save the gd_bundle-g2-g1.crt and your own certificate as a file for the browser to climb the certificate chain. The method is as follows:

Cat yourdomain.com. CRT gd_bundle-g2.crt> yourdomain.com _ combined. CRT

Reconfigure nginx

ssl on;ssl_certificate /ssl_location/yourdomain.com_combined.crt;ssl_certificate_key /ssl_location/yourdomain.com.key;

Then test and pass the test.

The Apache configuration method is also found in the solution process, as follows: Apache supports the certificate chain bundle File

SSLEngine OnSSLCertificateFile /ssl_location/yourdomain.com.crtSSLCertificateKeyFile /ssl_location/yourdomain.com.keySSLCertificateChainFile /ssl_location/gd_bundle.crt

Godaddy SSL Certificate untrusted

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.