It’s actually not that difficult. ISPConfig3 already sets the option there. We just need to provide all the necessary tools.
Getting certbot
Refer to Let’s Encrypt in Debian for Wheezy or manual setup.
For Debian 8 Jessie, enable Backports repo to install certbot.
echo "deb http://ftp.debian.org/debian jessie-backports main" | sudo tee /etc/apt/sources.list.d/debian-backports.listsudo apt updatesudo apt install certbot -t jessie-backportsFor Debian 9 Stretch, you just have to install it.
sudo apt install certbotAccording Perfect Guide tutorial, we have to make a directory. I don’t know if this is a necessary thing to do. I’m doing it just for the sake of completeness.
sudo mkdir /opt/certbotsudo ln -s /usr/bin/certbot /opt/certbot/certbot-autoDone.

