3/19/2018

添加免费证书(备忘)

https://github.com/Neilpang/acme.sh/wiki/%E8%AF%B4%E6%98%8E

1,安装acme.sh

1
curl https://get.acme.sh | sh

2,将CloudFlare Global API KEY加入临时系统变量

1
2
    export CF_Key="******************"
    export CF_Email="********"

3,获取证书

1
~/.acme.sh/acme.sh --issue -d lingbo.me -d *.lingbo.me --dns dns_cf

ps,
How to get pkcs12(pfx) format

1
acme.sh  --toPkcs  -d <domain>  [--password pfx-password]

甲骨文云ubuntu系统关防火墙

  6、Ubuntu系统 开放所有端口 iptables -P INPUT ACCEPT iptables -P FORWARD ACCEPT iptables -P OUTPUT ACCEPT iptables -F Ubuntu镜像默认设置了Iptable规则,关闭它, ap...