使用 lego 创建 https 证书
# 使用 lego 创建 https 证书
https://go-acme.github.io/lego/dns/
#!/bin/bash
#
cd $(dirname $0)
source .env
lego --email="${EMAIL}" \
--key-type rsa2048 \
--domains="${DOMAIN1}" \
--path=$(pwd) --dns $DNS_PROVIDER --accept-tos run
1
2
3
4
5
6
7
8
9
10
11
2
3
4
5
6
7
8
9
10
11
上次更新: 2023/04/05, 05:23:58