Skip to content

Instantly share code, notes, and snippets.

@ahmadawais
Created March 8, 2018 19:26
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ahmadawais/87565c49cb45042e7b8a2b7dcd3a5292 to your computer and use it in GitHub Desktop.
Save ahmadawais/87565c49cb45042e7b8a2b7dcd3a5292 to your computer and use it in GitHub Desktop.
EE: EasyEngine Let's Encrypt Update When Nothing Else Works
My current fix to this issue after your EE LE cert has expired is this
```sh
cd ~
git clone https://github.com/letsencrypt/letsencrypt
cd letsencrypt
ee site update domain.com --le=off # or run with sudo, though, not needed.
./letsencrypt-auto certonly --webroot -w /var/www/domain.com/htdocs/ -d domain.com -d www.domain.com --email your@email.com --text --agree-tos
ee site update domain.com --le=on # or run with sudo, though, not needed.
```
@ahmadawais
Copy link
Author

./letsencrypt-auto certonly --webroot -w /var/www/domain.com/htdocs/ -d domain.com --email your@email.com --text --agree-tos

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment