openssl req -nodes -newkey rsa:2048 -keyout myserver.key -out server.csr
2. I paste the CSR into CloudFlare's utility and get back a PEM certificate.
3. I run the following command to convert my private key to a PEM key, as per the docs:
openssl rsa -in myserver.key -out myserver.key.pem
4. I go to certificates in App Engine and select the certificate from CloudFlare for the public key certificate and myserver.key.pem for the RSA private key. I get the following error message:
The SSL certificate provided could not be inserted.
Any suggestions on what I might be doing wrong?
Thanks
--You received this message because you are subscribed to a topic in the Google Groups "Google App Engine" group.To unsubscribe from this topic, visit https://groups.google.com/d/topic/google-appengine/btN3G0qLbEg/unsubscribe.To unsubscribe from this group and all its topics, send an email to google-appengi...@googlegroups.com.To post to this group, send email to google-a...@googlegroups.com.Visit this group at https://groups.google.com/group/google-appengine.To view this discussion on the web visit https://groups.google.com/d/msgid/google-appengine/57598d6c-cee1-4fc6-86c2-ec2997bcc680%40googlegroups.com.For more options, visit https://groups.google.com/d/optout.
openssl x509 -noout -modulus -in concat.crt | openssl md5
openssl rsa -noout -modulus -in myserver.key.pem | openssl md5
openssl verify -verbose -CAfile concat.crt concat.crt
To unsubscribe from this group and all its topics, send an email to google-appengine+unsubscribe@googlegroups.com.To post to this group, send email to google-appengine@googlegroups.com.
concat.crt: O = "CloudFlare, Inc.", OU = CloudFlare Origin CA, CN = CloudFlare Origin Certificate
error 20 at 0 depth lookup:unable to get local issuer certificate
To unsubscribe from this group and all its topics, send an email to google-appengi...@googlegroups.com.To post to this group, send email to google-a...@googlegroups.com.
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-appengine/50d190c8-8e13-4b85-be7f-f3d1621fa247%40googlegroups.com.