BlueXIII's Blog

热爱技术,持续学习

0%

使用acme申请SSL证书

github

过程

1
2
3
4
5
6
7
8
9
10
11
12
13
# 安装acme.sh
curl https://get.acme.sh | sh -s email=foobar@163.com

# 生成证书
export Ali_Key="foo"
export Ali_Secret="bar"
acme.sh --issue --dns dns_ali -d foobar.com -d www.foobar.com

# 安装证书
acme.sh --install-cert -d foobar.com \
--cert-file /etc/grafana/foobar.com.cer \
--key-file /etc/grafana/foobar.com.key \
--reloadcmd "systemctl restart grafana-server"