All Guides
Let's Encrypt SSL-Zertifikat
Holen Sie sich ein kostenloses SSL/TLS-Zertifikat mit Certbot.
Beginner10 Min.
Setup Steps
1. Install Certbot:
sudo apt install certbot -y2. Install the Apache plugin:
sudo apt install python3-certbot-apache -y3. Install the Nginx plugin:
sudo apt install python3-certbot-nginx -y4. Get a certificate with Apache:
sudo certbot --apache -d mysite.com -d www.mysite.com5. Get a certificate with Nginx:
sudo certbot --nginx -d mysite.com -d www.mysite.com6. Enter your email address and accept the terms
7. Test automatic renewal:
sudo certbot renew --dry-run8. Automatic renewal cron job (usually added automatically):
sudo crontab -e
# Add:
0 0,12 * * * certbot renew --quiet9. Check SSL status:
sudo certbot certificatesRelated Guides
Linux VPS Server Einrichtung (Ubuntu)
Konfigurieren Sie Ihren Ubuntu-basierten VPS-Server von Grund auf.
Apache Webserver Einrichtung
Installieren Sie den Apache HTTP-Server und konfigurieren Sie virtuelle Hosts.
Nginx Webserver Einrichtung
Installieren Sie den Nginx-Webserver und konfigurieren Sie ihn als Reverse Proxy.
Node.js und npm Einrichtung
Installieren Sie die Node.js-Laufzeitumgebung und den npm-Paketmanager.