[Hetzner] ISPConfig 3 Installation auf Single IP Host

ISPConfig 3 Installation auf Debian 12 VM

  • Hostnames prüfen
nano /etc/hosts
nano /etc/hostname
  • ISPConfig 3 installieren
wget -O - https://get.ispconfig.org | sh -s -- --use-ftp-ports=40110-40210 --unattended-upgrades
  • Certbot Installation
sudo apt update
sudo apt install certbot python3-certbot-apache
  • Apache2 stoppen
sudo systemctl stop apache2 
  • Zertifikat anfragen
sudo certbot certonly --standalone -d <FQDN>
  • VHost bearbeiten
nano /etc/apache2/sites-available/ispconfig.vhost
  • SSL Zeilen anpassen
SSLEngine on 
	SSLCertificateFile /etc/letsencrypt/live/<FQDN>/fullchain.pem 
	SSLCertificateKeyFile /etc/letsencrypt/live/<FQDN>/privkey.pem 
  • Apache 2 starten
sudo systemctl start apache2