I am utterly failing to find a working guide for installing Let's Encrypt certificates on a single Google Cloud virtual machine.
I'm pretty clearly getting the picture that just doing the Apache webserver configuration isn't enough.
The information here, https://cloud.google.com/load-balancing/docs/ssl-certificates , seems to assume I'm doing load balancing--um, I'm on a tight budget here so it's only the one virtual machine. No load balancing.
I found some gcloud commands somewhere which I translate as:
- gcloud compute ssl-certificates create partsunknownorg --certificate=/etc/letsencrypt/live/parts-unknown.org/fullchain.pem --private-key=/etc/letsencrypt/live/parts-unknown.org/privkey.pem
- gcloud compute target-https-proxies update partsunknownorg --certificate=/etc/letsencrypt/live/parts-unknown.org/fullchain.pem --private-key=/etc/letsencrypt/live/parts-unknown.org/privkey.pem
I used the first one to try to install the certificates; I gather I should use the second to update them. Is that right?
In any event, it seems not to have worked. And I'm baffled.