Updated Preferred Chain (markdown)

master
neil 2021-10-13 00:29:54 +08:00
parent c4c154c58f
commit f36f13a73c
1 changed files with 5 additions and 5 deletions

@ -10,24 +10,24 @@ https://letsencrypt.org/docs/staging-environment/
| Name | Default | | Name | Default |
|-------------------------------|----------| |-------------------------------|----------|
| (STAGING) Pretend Pear X1 | Yes | | (STAGING) Pretend Pear X1 | No |
| (STAGING) Bogus Broccoli X2 | No | | (STAGING) Bogus Broccoli X2 | Yes |
You select the ca like: You select the ca like:
``` ```
acme.sh --issue -d example.com ..... --test --preferred-chain "(STAGING) Bogus Broccoli X2" acme.sh --issue -d example.com ..... --test --preferred-chain "(STAGING) Pretend Pear X1"
``` ```
You can also use part of the name: You can also use part of the name:
``` ```
acme.sh --issue -d example.com ..... --test --preferred-chain "X2" acme.sh --issue -d example.com ..... --test --preferred-chain "X1"
``` ```
It's also case-insensitive: It's also case-insensitive:
``` ```
acme.sh --issue -d example.com ..... --test --preferred-chain "x2" acme.sh --issue -d example.com ..... --test --preferred-chain "x1"
``` ```