Download and install acme.sh
acme.sh is a full implementation of a LetsEncrypt client but that doesn’t depend on Python/pip/virtualenv/etc, and that doesn’t require root — exactly what we need, since we don’t have root an a shared GoDaddy server, and we can’t install new software outside of our home directory.
Now log out and SSH back in so acme.sh
‘s install is complete in every way (include the Bash alias).
Get a GoDaddy API Key
- Visit https://developer.godaddy.com/keys/
- Generate a production key (it made me produce a test key first for some reason…)
- In the SSH session you have open run these commands, but with each
...
replaced by the value GoDaddy gave you in the previous step:
export GD_Key=…
Run the below:
(NOTE: If you’re creating this cert for a domain that’s not the default domain being hosted on this server, then instead of ~/www
you’ll need to do something like ~/www/MYOTHERDOMAIN.COM
.)
Boom! You should have just gotten your first good news of the day — your cert, cert key, intermediate CA cert, and full cert chain have been generated!
…but GoDaddy still doesn’t know that the cert exists, so it’s not using it.
Upload cert and private key to GoDaddy via acme.sh –deploy
- Use
nano
to open~/.acme.sh/deploy/cpanel_uapi.sh
, uncomment theDEPLOY_CPANEL_USER
variable at the top, set its value to your username - Run
acme.sh --deploy -d MYDOMAIN.com --deploy-hook cpanel_uapi
After ~30 seconds, you should see output like this!
[Sun Sep 17 03:17:45 MST 2017] Success
Once complete, edit the cronjob file with
and replace MYDOMAIN.com
and the other domains with your own domains:
1 0 1 * * ~/.acme.sh/acme.sh –deploy -d MYDOMAIN.com –deploy-hook cpanel_uapi
2 0 1 * * ~/.acme.sh/acme.sh –deploy -d SOMEOTHERDOMAIN.org –deploy-hook cpanel_uapi
3 0 1 * * ~/.acme.sh/acme.sh –deploy -d THIRDDOMAIN.com –deploy-hook cpanel_uapi
Hit CTRL+X, type ‘Y’, and ENTER to save.
Tadaa, you now have a fully automated LetsEncrypt certificate on your site(s)!
Leave a Reply