今天折腾了一天的TK域名acme.sh证书获取,最后,最后还是要用手动模式还获得证书,这也许是免费域名的通病。
acme.sh手动模式
acme.sh –issue -d abc.tk -d *.abc.tk –dns \
–yes-I-know-dns-manual-mode-enough-go-ahead-please
执行之后会提示错误,按照提示设置一个TXT,然后再运行一次,这次加个参数 –renew 就可以顺利拿到域名证书了。
下面是安装证书
acme.sh –install-cert -d abc.tk \
–key-file abc.tk.key \
–fullchain-file abc.tk.cer \
–reloadcmd “service nginx reload”
完成手动模式。