在Google Cloud Platform上安装SSL证书后获取ERR_CERT_AUTHORITY_INVALID

时间:2019-03-30 19:55:13

标签: ssl google-cloud-platform bitnami

我遵循了本教程:https://www.onepagezen.com/free-ssl-certificate-wordpress-google-cloud-bitnami/,以在Google Cloud Platform上为我的网站实现SSL证书。现在打开它,我得到ERR_CERT_AUTHORITY_INVALID,并且一切都做对了。

我所有的.pem证书文件都在我网站的文件夹(madnumber.org)中,而不是在我确定的example.com中。

我的配置文件是:/opt/bitnami/apache2/conf/bitnami/bitnami.conf

代码如下:

# Default Virtual Host configuration.
<IfVersion < 2.3 >
  NameVirtualHost *:80
  NameVirtualHost *:443
</IfVersion>
<VirtualHost _default_:80>
  DocumentRoot "/opt/bitnami/apache2/htdocs"
  ServerName www.madnumber.org
  ServerAlias madnumber.org
  Redirect permanent / https://www.madnumber.org/
  <Directory "/opt/bitnami/apache2/htdocs">
    Options Indexes FollowSymLinks
    AllowOverride All
    <IfVersion < 2.3 >
      Order allow,deny
      Allow from all
    </IfVersion>
    <IfVersion >= 2.3 >
      Require all granted
    </IfVersion>
  </Directory>
  # Error Documents
  ErrorDocument 503 /503.html
  # Bitnami applications installed with a prefix URL (default)
  Include "/opt/bitnami/apache2/conf/bitnami/bitnami-apps-prefix.conf"
</VirtualHost>

更新: 遵循了一个新教程https://techmonger.github.io/46/free-ssl-google-cloud/,但它给了我这个错误:

  

域名:madnumber.org类型:未经授权详细信息:无效   来自
的回复   http://madnumber.org/.well-known/acme-challenge/1OlqUItVV8q_MTc-vkFp53nifCBtcVNftFDyRmdxKYY   [00.00.00.0000]:“ \ n   lang = \“ zh-CN \”> \ n \ n \ t \ n \ t   名称= \“视口\”内容= \“宽度=设备宽度,初始”要修复   这些错误,请确保输入了您的域名   正确并且该域的DNS A / AAAA记录包含   正确的IP地址。

1 个答案:

答案 0 :(得分:1)

由于以下三个原因中的任何一个,您都遇到此错误:

  1. 颁发的证书已经过期
  2. 浏览器很旧
  3. 网站证书和浏览器连接不安全

您也可以参考此resource