Updated Server (markdown)

neil 2020-08-12 21:23:31 +08:00
parent c0d9472fd1
commit 38a070b8e0
1 changed files with 26 additions and 0 deletions

@ -24,4 +24,30 @@ acme.sh --issue .... --server https://acme.zerossl.com/v2/DV90
```
For now, the default CA is `letsencrypt`. If you want to use another CA, you need to specify `--server` for each command.
For example, if your want to use `zerossl` CA :
```
acme.sh --register-account --server zerossl -m myemail@example.com
--or--
acme.sh --issue --server zerossl -d example.com --dns dns_cf
```
There is a way to change the default CA:
```
acme.sh --set-default-ca zerossl
```
From now on, you will issue cert from `zerossl` without `--server` parameters.
```
acme.sh --issue -d example.com --dns dns_cf
```