1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-06 05:46:00 +02:00
tldr/pages.nl/common/acme.sh.md
Reinhart Previano Koentjoro d6d4561c17
pages*: fix documentation mistakes (#11641)
* a2ping: minor fixes

* ab: fix mnemonics

* ab: fix mnemonics

* ab: fix mnemonics

* abduco: add mnemonics

* accelerate: use Hugging Face as a trademark

* ack: highlight grep as a command

* acme.sh: highlight certbot as command

* act: add mnemonics

* ag: highlight ack as command

* age-keygen: add Oxford comma

* linux/shutdown: add mnemonics

* airdecap-ng: use Oxford comma

* alex: use standard path name template
2023-12-03 19:59:57 +07:00

1.3 KiB

acme.sh

Shell-script dat het ACME-clientprotocol implementeert, een alternatief voor certbot. Zie 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 --domain {{voorbeeld.com}} --webroot {{/pad/naar/webroot}}

  • Geef een certificaat uit voor meerdere domeinen in de zelfstandige modus met poort 80:

acme.sh --issue --standalone --domain {{voorbeeld.com}} --domain {{www.voorbeeld.com}}

  • Geef een certificaat uit met behulp van de zelfstandige TLS-modus met behulp van poort 443:

acme.sh --issue --alpn --domain {{voorbeeld.com}}

  • Geef een certificaat uit met een werkende Nginx-configuratie:

acme.sh --issue --nginx --domain {{voorbeeld.com}}

  • Geef een certificaat uit met een werkende Apache-configuratie:

acme.sh --issue --apache --domain {{voorbeeld.com}}

  • Geef een wildcardcertificaat (*) uit met behulp van een automatische DNS API-modus:

acme.sh --issue --dns {{dns_cf}} --domain {{*.voorbeeld.com}}

  • Installeer certificaatbestanden op de opgegeven locaties (handig voor automatische certificaatvernieuwing):

acme.sh --install-cert -d {{voorbeeld.com}} --key-file {{/pad/naar/voorbeeld.com.key}} --fullchain-file {{/pad/naar/voorbeeld.com.cer}} --reloadcmd {{"systemctl force-reload nginx"}}