本文介绍了HTTPS安全证书无法通过openshift服务器上移动可信错误的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我开始对openshift的应用程序。我已经购买从namecheap科摩多积极SSL和按照说明安装上openshift。它适用于桌面浏览器不错,但我得到在Android浏览器下​​面的不被信任的错误。我没有尝试过的IOS。

I'm starting an app on openshift. I've purchased comodo positive ssl from namecheap and followed the instructions to install on openshift. It works fine on desktop browsers but i get the following "not trusted" error on android browsers. I have not tried IOS.

我上传以下文件openshift:

i uploaded following files to openshift:


  • stylistcity_com.crt

  • stylistcity_com.crt

server.key

server.key

其他的文件,我有没有使用包括:

Other files i have that were not used include:


  • server.csr

  • server.pass.key

  • AddTrustExternalCARoot.crt

  • PositiveSSLCA2.crt

任何帮助将是AP preciated。

Any help would be appreciated.

推荐答案

由于从openshift IRC通道@stenwt,它最后的工作。这里是我做到了。

Thanks to @stenwt from the openshift irc channel, It finally work. Here is what i did.

cat mycert.crt cacert.ca > myapp.pem; rhc alias update-cert appname www.domain.com --certificate myapp.pem --private-key myapp.key --passphrase 'mypass'

这篇关于HTTPS安全证书无法通过openshift服务器上移动可信错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-03 18:58