I have resolved this by doing the following:

I had to edit httpd.conf –

Listen 443

<VirtualHost *:443 >

SSLEngine on

SSLOptions +StrictRequire

SSLCipherSuite HIGH:MEDIUM:+EXP

SSLCertificateFile “ssl/ssl-cert.pem”

SSLCertificateKeyFile “ssl/ssl-private-key.pem”

SSLCertificateChainFile “ssl/intermediate.pem” #this line was added

In order to get the intermediate .crt filefrom GoDaddy converted to .pem I used these commands.

openssl x509 -in input.crt -out input.der -outform DER

then

openssl x509 -in input.der -inform DER -out output.pem -outform PEM

I then copied the output.pem file to the SSL directory and renamed it to intermediate.pem to match the config file.

Thanks for your help on this, Alex.

2 Spice ups