Twice a year a buy a security certificate from gandi.net, one for each of my two domains.
Last month I bought one and had no problem registering it with GAE’s SSL Certificates (just as I’ve done for years now).
This month I bought the other one and went through exactly the same procedure (I have it written down) but this time get an error message “The private key you’ve selected does not appear to be valid.” Unsurprisingly, that’s it: no more information, no help, so I have no idea what to do.
Here’s the procedure I use:
-
Run: openssl req -nodes -newkey rsa:2048 -sha256 -keyout mydomain.key -out mydomain.csr
This gives me a new private key. -
Buy & download the .csr certificate file from gandi.net using the above generated private key.
-
Generate and upload the x509 PEM key and RSA PEM key that GAE requests. These files are generated like this:
openssl x509 -in www.mydomain.com.crt -out www.mydomain.com.pem -outform PEM
openssl rsa -in mydomain.key -out mydomain.pem -outform PEM
This has worked for many years with both my domains so I have no idea why it has stopped working this time.