Skip to content

Instantly share code, notes, and snippets.

@zoharbabin
Created July 23, 2017 16:11
Show Gist options
  • Star 14 You must be signed in to star a gist
  • Fork 6 You must be signed in to fork a gist
  • Save zoharbabin/01d1d95358d4b1c0e0b078824ddb930a to your computer and use it in GitHub Desktop.
Save zoharbabin/01d1d95358d4b1c0e0b078824ddb930a to your computer and use it in GitHub Desktop.
Delete and reinstall SSL certificates with certbot on Ubuntu
certbot certificates
# find the path to the fullchain certificate you wish to reinstall
certbot revoke --cert-path /etc/letsencrypt/live/... #path to the cert from above
certbot delete --cert-name yourdomain.com
rm -Rf /etc/apache2/sites-available/000-default-le-ssl.conf #or whatever the name of the apache conf you had it configured on
rm -Rf 000-default-le-ssl.conf #or whatever the name of the apache conf you had it configured on
sudo apache2ctl restart
certbot #follow the guide to setup the new certificate
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment