3

Whenever people navigate to a particular site of ours on an iPhone or iPad they are getting a "cannot verify server identity" message.

Our certificate was issued by Go Daddy.

I ran this checker as suggested in another question and everything appears OK.

going
  • 268
  • 1
  • 2
  • 9

4 Answers4

4

Issue was with intermediate certificate. I downloaded a new one from GoDaddy and installed and this has resolved the issue.

Seems there may be a problem with the checker above as it indicated the at the intermediate certificate was OK.

going
  • 268
  • 1
  • 2
  • 9
1

I had an issue with a GoDaddy SSL cert not being trusted in iOS on iPad and iPhone. Turns out I didn't install the bundle. After installing the bundle the cert came back trusted and no more cant identify server identity notice in iOS devices.

Simon Hayter
  • 33,097
  • 7
  • 60
  • 119
aron
  • 11
  • 1
1

I had this issue on two different servers, meaning if you have apache 2.4.8 or greater use this settings in your config file.

SSLCertificateFile /etc/apache2/ssl/example.crt
SSLCertificateKeyFile /etc/apache2/ssl/example.key
SSLCACertificateFile /etc/apache2/ssl/intermediate.crt

Version's 2.4.7 or less

SSLCertificateFile /etc/apache2/ssl/example.crt
SSLCertificateKeyFile /etc/apache2/ssl/example.key
SSLCertificateChainFile /etc/apache2/ssl/intermediate.crt
Rick
  • 111
  • 2
1

Not sure if this will help but was speaking with someone this morning who mentioned that GoDaddy chain there SSL certificates and that some bits of software don't trust this as they can not look further down the chain.

this article talks about the issue: SSLShopper cert not trusted

Matthew Brookes
  • 770
  • 4
  • 13