Request wildcard Certificate with acme.sh in Docker
Let's Encrypt Free Certificate
- validity 90 days
- wildcard Yes
- multiple main domains Yes
# step 1
docker run --rm -it \
-v "/tmp/acme":/acme.sh \
neilpang/acme.sh --issue \
-d "*.feitsui.com" \
--dns --yes-I-know-dns-manual-mode-enough-go-ahead-please
# step 2: update TXT record for DNS verification
# step 3
docker run --rm -it \
-v "/tmp/acme":/acme.sh \
neilpang/acme.sh --renew \
-d "*.feitsui.com" \
--dns --yes-I-know-dns-manual-mode-enough-go-ahead-please
BuyPass Free Certificate
- validity 180 days
- wildcard No
- multiple main domains Yes
- multiple subdomains Yes
docker run --rm -it \
-v "/tmp/acme":/acme.sh \
neilpang/acme.sh --register-account \
--accountemail admin@feitsui.com
docker run --rm -it \
-v "/tmp/acme":/acme.sh \
neilpang/acme.sh --issue \
--server https://api.buypass.com/acme/directory \
-d "g1.feitsui.com" \
-d "o1.feitsui.com" \
--dns --yes-I-know-dns-manual-mode-enough-go-ahead-please
docker run --rm -it \
-v "/tmp/acme":/acme.sh \
neilpang/acme.sh --renew \
--server https://api.buypass.com/acme/directory \
-d "g1.feitsui.com" \
-d "o1.feitsui.com" \
--dns --yes-I-know-dns-manual-mode-enough-go-ahead-please