Trouble with Google Apps Custom Domain SSL

前端 未结 2 1808
我寻月下人不归
我寻月下人不归 2020-12-13 09:40

I\'m currently inside the 30-day free trial for Google Apps for business (billing set up, so will start non-free trial soon). I\'m attempting to set up SSL for a custom doma

2条回答
  •  Happy的楠姐
    2020-12-13 10:17

    For me, it was because my private.key was in the wrong format.

    If your key starts with ---BEGIN PRIVATE KEY--- then you need to convert it to an RSA key.

    openssl rsa -in private.key -out private_rsa.key
    

    Then you should see ---BEGIN RSA PRIVATE KEY--- at the beginning of the private_rsa.key which you use with GAE.

提交回复
热议问题