(1) Setup your Let's Encrypt client:
git clone https://github.com/letsencrypt/letsencrypt
(2) Generate the certificate. For example, to get a certificate for www.acme.com:
sudo ./letsencrypt-auto certonly --manual -d www.acme.com
Answer a few questions and the script will pause. You will then need to upload a validation file to www.acme.com to confirm that you indeed own the domain.
Create a file containing just this data:(3) Create and upload the file to App Engine. Create the folder .well-know/acme-challenge in your application tree. Then create the specified file and content. In this example, the file name is
_Pwd8uL9_Joz0O2HNlbyb5nBnrcqvmGj02gX2PfJYhw.XOAQHxnBJFCW1KHWhsYsaRmc_BaKnwNpuNYbS8o2gdY
And make it available on your web server at this URL:
http://www.acme.com/.well-known/acme-challenge/_Pwd8uL9_Joz0O2HNlbyb5nBnrcqvmGj02gX2PfJYhw
-------------------------------------------------------------------------------
Press Enter to Continue
_Pwd8uL9_Joz0O2HNlbyb5nBnrcqvmGj02gX2PfJYhw
and the content is _Pwd8uL9_Joz0O2HNlbyb5nBnrcqvmGj02gX2PfJYhw.XOAQHxnBJFCW1KHWhsYsaRmc_BaKnwNpuNYbS8o2gdY
In your app.yaml file, include the /.well-know folder as static content:
handler:
......
- url: /.well-known
static_dir: .well-known
......
Then deploy your app:
gcloud app deploy app.yaml
(4) (Optional) Test the URL with your browser that the validation file is deployed successfully.
(5) Go back to the console where the Let's Encrypt client is paused. Press Enter to continue the execution. If everything worked out, the certificate and private key will be generated.
(6) Deploy the certificate to GCP. In your browser, go to the GCP console > App Engine > Settings. Select "SSL certificates". Click "Upload a new certificate".
Dump the content of the certificate and paste it in the text area:
sudo cat /etc/letsencrypt/live/www.acme.com/fullchain.pem
For the private key, you will need to convert the format to RSA before pasting:
sudo openssl rsa -in /etc/letsencrypt/live/www.acme.com/privkey.pem
Finally, check the box to enable this certificate with your custom domain.
No comments:
Post a Comment