1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-28 13:55:27 +02:00
tldr/pages.nl/common/acme.sh.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

33 lines
1.4 KiB
Markdown

# acme.sh
> Shell-script dat het ACME-clientprotocol implementeert, een alternatief voor `certbot`.
> Bekijk ook `acme.sh dns`.
> Meer informatie: <https://github.com/acmesh-official/acme.sh>.
- Geef een certificaat uit met behulp van de webroot-modus:
`acme.sh --issue {{[-d|--domain]}} {{example.com}} {{[-w|--webroot]}} {{/pad/naar/webroot}}`
- Geef een certificaat uit voor meerdere domeinen in de zelfstandige modus met poort 80:
`acme.sh --issue --standalone {{[-d|--domain]}} {{example.com}} {{[-d|--domain]}} {{www.example.com}}`
- Geef een certificaat uit met behulp van de zelfstandige TLS-modus met behulp van poort 443:
`acme.sh --issue --alpn {{[-d|--domain]}} {{example.com}}`
- Geef een certificaat uit met een werkende Nginx-configuratie:
`acme.sh --issue --nginx {{[-d|--domain]}} {{example.com}}`
- Geef een certificaat uit met een werkende Apache-configuratie:
`acme.sh --issue --apache {{[-d|--domain]}} {{example.com}}`
- Geef een wildcardcertificaat (\*) uit met behulp van een automatische DNS API-modus:
`acme.sh --issue --dns {{dns_cf}} {{[-d|--domain]}} {{*.example.com}}`
- Installeer certificaatbestanden op de opgegeven locaties (handig voor automatische certificaatvernieuwing):
`acme.sh {{[-i|--install-cert]}} {{[-d|--domain]}} {{example.com}} --key-file {{/pad/naar/example.key}} --fullchain-file {{/pad/naar/example.cer}} --reloadcmd "{{systemctl force-reload nginx}}"`