Letsencrypt: Unterschied zwischen den Versionen

Aus WIKI
Zur Navigation springen Zur Suche springen
Keine Bearbeitungszusammenfassung
Keine Bearbeitungszusammenfassung
Zeile 7: Zeile 7:
sudo ./certbot-auto certonly --standalone --rsa-key-size 4096 -d <domain> -d <domain> --debug
sudo ./certbot-auto certonly --standalone --rsa-key-size 4096 -d <domain> -d <domain> --debug
sudo /etc/init.d/apache2 start
sudo /etc/init.d/apache2 start
</pre>
<pre>
Private Key --------> privkey.pem
Public Key ---------> cert.pem
Certificate Chain --> chain.pem
</pre>
</pre>

Version vom 27. März 2019, 08:30 Uhr

Zertifikate erneuern auf server... certbot certonly

git clone https://github.com/certbot/certbot
cd certbot
sudo /etc/init.d/apache2 stop
sudo ./certbot-auto certonly --standalone --rsa-key-size 4096 -d <domain> -d <domain> --debug
sudo /etc/init.d/apache2 start
Private Key --------> privkey.pem
Public Key ---------> cert.pem
Certificate Chain --> chain.pem