Changed default CA to zerossl.

master
Vincent Terraillon 2021-08-13 08:32:11 +02:00
parent 544b0316e1
commit 37d2673de6
1 changed files with 6 additions and 6 deletions

@ -25,26 +25,26 @@ 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 now, the default CA is `sslcom`. If you want to use another CA, you need to specify `--server` for each command.
For example, if your want to use `zerossl` CA :
For example, if your want to use `letsencrypt` CA :
```
acme.sh --register-account --server zerossl -m myemail@example.com
acme.sh --register-account --server letsencrypt -m myemail@example.com
--or--
acme.sh --issue --server zerossl -d example.com --dns dns_cf
acme.sh --issue --server letsencrypt -d example.com --dns dns_cf
```
There is a way to change the default CA:
```
acme.sh --set-default-ca --server zerossl
acme.sh --set-default-ca --server letsencrypt
```
From now on, you will issue cert from `zerossl` if you don't specify any `--server` parameter.
From now on, you will issue cert from `letsencrypt` if you don't specify any `--server` parameter.
```
acme.sh --issue -d example.com --dns dns_cf