Updated ZeroSSL.com CA (markdown)

master
neil 2020-08-11 23:24:56 +08:00
parent 5f9c79d4af
commit 926a150b7f
1 changed files with 16 additions and 3 deletions

@ -8,18 +8,31 @@ Using ZeroSSL.com CA
2. Register acme account: 2. Register acme account:
``` ```
acme.sh --register-account --server https://acme.zerossl.com/v2/DV90 \ acme.sh --register-account --server zerossl \
--eab-kid xxxxxxxxxxxx \ --eab-kid xxxxxxxxxxxx \
--eab-hmac-key xxxxxxxxx --eab-hmac-key xxxxxxxxx
``` ```
3. Done. You can use Zerossl.com with `--server https://acme.zerossl.com/v2/DV90` as normal now. 3. Done. You can use Zerossl.com with `--server zerossl` as normal now.
``` ```
acme.sh --server https://acme.zerossl.com/v2/DV90 \ acme.sh --server zerossl \
--issue -d example.com \ --issue -d example.com \
--dns dns_cf --dns dns_cf
``` ```
4. If you don't want to specify `--server zerossl` every time you issue a cert, you can set `zerossl` as the default CA:
```
acme.sh --set-default-ca --server zerossl
```
Then you can issue any cert from zerossl:
```
acme.sh --issue -d example.com --dns dns_cf
```
More details: https://github.com/acmesh-official/acme.sh/wiki/How-to-issue-a-cert More details: https://github.com/acmesh-official/acme.sh/wiki/How-to-issue-a-cert