Hello, I am trying to install a custom SSL certificate for google app engine but I get this error: "The certificate data is invalid. Please ensure that the private key and public certificate match." So I checked with the commands:
openssl x509 -noout -modulus -in concat.crt | openssl md5 openssl rsa -noout -modulus -in server.key.pem | openssl md5
and the output is the same.
The headers of the two files are correct.
"-----BEGIN CERTIFICATE-----" and "-----END CERTIFICATE-----",
"-----BEGIN RSA PRIVATE KEY-----" and "-----END RSA PRIVATE KEY-----".
I have no idea.