acme.sh-dns: add page; acme.sh: remove example (#5852)

fix-hunspell-typos-042721
Peter Babič 2021-05-14 02:49:45 +02:00 committed by GitHub
parent be88cdda92
commit 345a2d8156
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 29 additions and 8 deletions

View File

@ -0,0 +1,24 @@
# acme.sh --dns
> Use a DNS-01 challenge to issue a TLS certificate.
> More information: <https://github.com/acmesh-official/acme.sh/wiki>.
- Issue a certificate using an automatic DNS API mode:
`acme.sh --issue --dns {{gnd_gd}} --domain {{example.com}}`
- Issue a wildcard certificate (denoted by an asterisk) using an automatic DNS API mode:
`acme.sh --issue --dns {{dns_namesilo}} --domain {{example.com}} --domain {{*.example.com}}`
- Issue a certificate using a DNS alias mode:
`acme.sh --issue --dns {{dns_cf}} --domain {{example.com}} --challenge-alias {{alias-for-example-validation.com}}`
- Issue a certificate while disabling automatic Cloudflare / Google DNS polling after the DNS record is added by specifying a custom wait time in seconds:
`acme.sh --issue --dns {{dns_namecheap}} --domain {{example.com}} --dnssleep {{300}}`
- Issue a certificate using a manual DNS mode:
`acme.sh --issue --dns --domain {{example.com}} --yes-I-know-dns-manual-mode-enough-go-ahead-please`

View File

@ -1,15 +1,16 @@
# acme.sh
> Shell script implementing ACME client protocol, an alternative to certbot.
> See also `acme.sh dns`.
> More information: <https://github.com/acmesh-official/acme.sh>.
- Issue a certificate using webroot mode:
`acme.sh --issue --domain {{example.com}} --webroot {{/path/to/webroot}}`
- Issue a certificate using standalone mode using port 80:
- Issue a certificate for multiple domains using standalone mode using port 80:
`acme.sh --issue --standalone --domain {{example.com}}`
`acme.sh --issue --standalone --domain {{example.com}} --domain {{www.example.com}}`
- Issue a certificate using standalone TLS mode using port 443:
@ -23,13 +24,9 @@
`acme.sh --issue --apache --domain {{example.com}}`
- Issue a wildcard (\*) certificate using a manual DNS mode:
- Issue a wildcard (\*) certificate using an automatic DNS API mode:
`acme.sh --issue --dns --domain {{example.com}}`
- Issue a certificate using an automatic DNS API mode:
`acme.sh --issue --dns {{dns_cf}} --domain {{example.com}}`
`acme.sh --issue --dns {{dns_cf}} --domain {{*.example.com}}`
- Install certificate files into the specified locations (useful for automatic certificate renewal):