mirror of https://github.com/CrimsonTome/tldr.git
30 lines
1.2 KiB
Markdown
30 lines
1.2 KiB
Markdown
# certbot
|
|
|
|
> The Let's Encrypt Agent zum automatischen Erhalten und Erneuern von TLS-Zertifikaten.
|
|
> Nachfolger von `letsencrypt`.
|
|
> Mehr Informationen: <https://certbot.eff.org/docs/using.html>.
|
|
|
|
- Beziehe ein neues Zertifikat über die webroot-Autorisierung, aber ohne dieses automatisch zu installieren:
|
|
|
|
`sudo certbot certonly --webroot --webroot-path {{pfad/zu/webroot}} --domain {{subdomain.beispiel.de}}`
|
|
|
|
- Beziehe ein neues Zertifikat über die nginx-Autorisierung und automatische Installation des neuen Zertifikats:
|
|
|
|
`sudo certbot --nginx --domain {{subdomain.beispiel.de}}`
|
|
|
|
- Beziehe ein neues Zertifikat über die apache-Autorisierung und automatische Installation des neuen Zertifikats:
|
|
|
|
`sudo certbot --apache --domain {{subdomain.beispiel.de}}`
|
|
|
|
- Erneuere alle Let's Encrypt Zertifikate die in 30 Tagen oder weniger auslaufen (nicht vergessen alle Server, die diese nutzen, neu zu starten):
|
|
|
|
`sudo certbot renew`
|
|
|
|
- Simuliere die Zertifikatserneuerung, ohne diese zu speichern:
|
|
|
|
`sudo certbot --webroot --webroot-path {{pfad/zu/webroot}} --domain {{subdomain.beispiel.de}} --dry-run`
|
|
|
|
- Beziehe eine Test-Zertifikat:
|
|
|
|
`sudo certbot --webroot --webroot-path {{pfad/zu/webroot}} --domain {{subdomain.beispiel.de}} --test-cert`
|