The provided SSL certificate cannot be inserted

I am using a google engine trying to add ssl for a custom domain. I am using a bare domain. After downloading the "PEM encoded X.509 public key certificate" and "Encrypted RSA private key with PEM encoding." "The provided SSL certificate could not be inserted." coming back. I use https://www.sslchecker.com private key / ssl verification. It corresponds. What's wrong? I use the "RSA 2048" key size, nothing wrong with ordering concatenated certificates. Thanks.

+5
source share
1 answer

I worked with this error for a long time and found a solution for my problem here:

http://qiita.com/yogurito/items/550b50b262418e93da22

If I understand correctly, the key file should be without a password, so do:

openssl rsa -in appengine.key -out appengine-nopass.key 

provided a key that GAE liked.

0
source

Source: https://habr.com/ru/post/1245883/


All Articles