mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00

* 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
33 lines
1.3 KiB
Markdown
33 lines
1.3 KiB
Markdown
# acme.sh
|
|
|
|
> Script shell implémentant le protocole client ACME, une alternative à `certbot`.
|
|
> Voir aussi `acme.sh dns`.
|
|
> Plus d'informations : <https://github.com/acmesh-official/acme.sh>.
|
|
|
|
- Publie un certificat en utilisant le mode webroot :
|
|
|
|
`acme.sh --issue --domain {{exemple.com}} --webroot {{/chemin/vers/webroot}}`
|
|
|
|
- Publie un certificat pour plusieurs domaines en utilisant le mode autonome avec le port 80 :
|
|
|
|
`acme.sh --issue --standalone --domain {{exemple.com}} --domain {{www.exemple.com}}`
|
|
|
|
- Publie un certificat en utilisant le mode autonome TLS avec le port 443 :
|
|
|
|
`acme.sh --issue --alpn --domain {{exemple.com}}`
|
|
|
|
- Publie un certificat en utilisant une configuration Nginx :
|
|
|
|
`acme.sh --issue --nginx --domain {{exemple.com}}`
|
|
|
|
- Publie un certificat en utilisant une configuration Apache :
|
|
|
|
`acme.sh --issue --apache --domain {{exemple.com}}`
|
|
|
|
- Publie un certificat wildcard (\*) en utilisant le mode automatique DNS API :
|
|
|
|
`acme.sh --issue --dns {{dns_cf}} --domain {{*.exemple.com}}`
|
|
|
|
- Installe les fichiers de certificat dans un dossier spécifique (Utile pour les renouvellements automatiques de certificat) :
|
|
|
|
`acme.sh --install-cert -d {{exemple.com}} --key-file {{/chemin/vers/exemple.com.key}} --fullchain-file {{/chemin/vers/exemple.com.cer}} --reloadcmd {{"systemctl force-reload nginx"}}`
|