Updated SSL.com CA (markdown)

neil 2021-06-21 21:24:03 +08:00
parent 07a7308a11
commit 3faaae44cd

@ -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
```