From 37d2673de6f1d1176b62e0435f307e14416c8d96 Mon Sep 17 00:00:00 2001 From: Vincent Terraillon Date: Fri, 13 Aug 2021 08:32:11 +0200 Subject: [PATCH] Changed default CA to zerossl. --- Server.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Server.md b/Server.md index 41a69e7..84dd047 100644 --- a/Server.md +++ b/Server.md @@ -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