Ubuntu 16.04 安装 certbot-dns-dnspod 插件
因为 Certbot 是使用的 python3,而 Ubuntu 16.04 默认还是 python2.7。所以,默认情况下,使用 sudo easy_install pip
安装的是 python2.7 的 pip。那就无法通过 pip 去安装 certbot-dns-dnspod。
解决方法如下:
sudo apt-get install python3-setuptools
sudo easy_install3 pip
sudo pip install certbot-dns-dnspod
然后,升级 certbot 为 0.22 以上版本,并指定新的认证服务器就可以申请泛域名证书了:
sudo certbot certonly --server https://acme-v02.api.letsencrypt.org/directory -a certbot-dns-dnspod:dns-dnspod --certbot-dns-dnspod:dns-dnspod-credentials /etc/letsencrypt/dnspod.conf -d larryli.cn -d "*.larryli.cn"
Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36
变成纯技术博客了呀