I installed Letsencrypt during the beta, following the instructions in the email, and now it seems broken on my debian jessie server.
I try to uninstall letsencrypt and want to start over with my (misconfigured apache)
What I did:
mkdir -p /backups
mv /etc/letsencrypt /backups/
cp -a /etc/apache2/sites-available /backups/
for i in /etc/apache2/sites-available/* ; do sed -i '/letsencrypt/d' $i; done
rm /etc/apache2/sites-available/*ssl.conf /etc/apache2/sites-enabled/*ssl.conf
apache2ctl graceful
Is this enough? Or are there more files that would make a problem, when I start over again?