From 3faaae44cd9e66fff4663aaeb60eb4f931401043 Mon Sep 17 00:00:00 2001 From: neil Date: Mon, 21 Jun 2021 21:24:03 +0800 Subject: [PATCH] Updated SSL.com CA (markdown) --- SSL.com-CA.md | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/SSL.com-CA.md b/SSL.com-CA.md index cdb62b9..90aaaa5 100644 --- a/SSL.com-CA.md +++ b/SSL.com-CA.md @@ -1,4 +1,13 @@ -SSL.com is providing free 90 days certs. +SSL.com is providing free 90 days certs. + +The cert can only contain one domain and its `www` sub domain. + +No wildcard certs. + + +``` +acme.sh --issue -d example.com -d www.example.com ........ +``` @@ -16,4 +25,16 @@ And also register an ECDSA account: acme.sh --register-account -m my@example.com --eab-kid xxxxxx --eab-hmac-key xxxxxxxx --ecc ``` +2. Then you can issue certs with `--server` parameter: + +```sh +acme.sh --issue -d example.com --dns dns_cf --server ssl.com + +``` +Or, issue an ECDSA cert: + +``` +acme.sh --issue -d example.com --dns dns_cf --server ssl.com -k ec-256 +``` +