Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/heroku/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
为什么不是';t我的heroku应用程序使用安全连接_Heroku_Lets Encrypt - Fatal编程技术网

为什么不是';t我的heroku应用程序使用安全连接

为什么不是';t我的heroku应用程序使用安全连接,heroku,lets-encrypt,Heroku,Lets Encrypt,我最近使用以下命令在heroku上从免费帐户升级到业余帐户: heroku ps:resize web=hobby heroku certs:auto:enable curl -vI https://www.yaknchat.com I使用以下命令启用了自动证书管理: heroku ps:resize web=hobby heroku certs:auto:enable curl -vI https://www.yaknchat.com 等了几个小时后,我决定跑步: hero

我最近使用以下命令在heroku上从免费帐户升级到业余帐户:

 heroku ps:resize web=hobby
 heroku certs:auto:enable
curl -vI https://www.yaknchat.com
I使用以下命令启用了自动证书管理:

 heroku ps:resize web=hobby
 heroku certs:auto:enable
curl -vI https://www.yaknchat.com
等了几个小时后,我决定跑步:

heroku certs:auto
根据我的状态描述,它运行正常

我甚至运行了以下命令:

 heroku ps:resize web=hobby
 heroku certs:auto:enable
curl -vI https://www.yaknchat.com
这说明我的服务器认证验证是正常的

但是,当我进入浏览器时,它会告诉我“此连接不完全安全”,而不是通常的回答“此连接不安全”


我做错了什么事。我应该进入我的DNS设置并更改CNAME或AAA记录吗?另外,是否需要使用SSL端点(heroku插件)为我的应用程序url获取安全的绿色条?

您正在链接到不安全的资源:

<img alt="feature pic" src="http://~~~.png" width="286" height="180" />


你需要对你的页面使用https,以及它加载的任何资源,这样你的浏览器才不会抱怨
curl
工作正常,因为它只获取html,而不获取链接的不安全图像。

天哪,你就是那个男人兄弟!正如您所建议的,我将图像http更改为https,并将新代码推送到我的站点上的repo和bam绿色栏。非常感谢!:)