1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-05 03:55:22 +02:00
tldr/pages.nl/linux/certbot.md
Sebastiaan Speck dc73a80540
pages.nl/common/a*: update Dutch translation, fix English typo's (#16245)
* pages.nl/common/a*: update Dutch translation, fix English typo's

* Update pages/common/asciinema.md

* Update act.md

* Update pages.nl/common/act.md

* Update age-keygen.md

Co-authored-by: Leon <leonvsc@users.noreply.github.com>

* pages.nl/common/b*: update Dutch translation (#16248)

* pages.nl/common/b*: update Dutch translation

* Update pages.nl/common/bc.md

Co-authored-by: Managor <42655600+Managor@users.noreply.github.com>

---------

Co-authored-by: Managor <42655600+Managor@users.noreply.github.com>

* certbot: update Dutch translation

* Update certbot.md

* Fix typos

---------

Co-authored-by: Leon <leonvsc@users.noreply.github.com>
Co-authored-by: Managor <42655600+Managor@users.noreply.github.com>
2025-04-25 18:51:41 +02:00

29 lines
1.3 KiB
Markdown

# certbot
> De Let's Encrypt Agent om automatisch TLS certificaten te verkrijgen en te vernieuwen.
> Opvolger van `letsencrypt`.
> Meer informatie: <https://eff-certbot.readthedocs.io/en/latest/using.html>.
- Verkrijg een nieuw certificaat via webroot authorisatie, maar installeer het certificaat niet automatisch:
`sudo certbot certonly --webroot {{[-w|--webroot-path]}} {{pad/naar/webroot}} {{[-d|--domain]}} {{subdomein.example.com}}`
- Verkrijg een nieuw certificaat via nginx authorisatie, installeer het nieuwe certificaat automatisch:
`sudo certbot --nginx {{[-d|--domain]}} {{subdomein.example.com}}`
- Verkrijg een nieuw certificaat via apache authorisatie, installeer het nieuwe certificaat automatisch:
`sudo certbot --apache {{[-d|--domain]}} {{subdomein.example.com}}`
- Vernieuw alle Let's Encrypt certificaten die binnen 30 dagen verlopen (vergeet achteraf niet alle servers te herstarten die dit certificaat gebruiken):
`sudo certbot renew`
- Simuleer het verkrijgen van een nieuw certificaat, maar sla deze niet op, op een harde schijf:
`sudo certbot --webroot {{[-w|--webroot-path]}} {{pad/naar/webroot}} {{[-d|--domain]}} {{subdomein.example.com}} --dry-run`
- Verkrijg een onvertrouwd test certificaat:
`sudo certbot --webroot {{[-w|--webroot-path]}} {{pad/naar/webroot}} {{[-d|--domain]}} {{subdomein.example.com}} --test-cert`