ubuntu 12.04 上舊的letsencrypt不小心升級了的解救方法
由於在Ubuntu 12.04上的letsencrypt升級會導致無法使用,所以必須改回舊版本才能用,作法如下
wget https://raw.githubusercontent.com/certbot/certbot/75499277be6699fd5a9b884837546391950a3ec9/certbot-auto
chmod +x ./certbot-auto
將certbot-auto置換即可
之後如果要安裝或定期更新:
安裝新站
./certbot-auto -d www.mysite.com --no-self-upgrade
定期更新
./certbot-auto renew --no-self-upgrade
參考資料來源:https://github.com/certbot/certbot/issues/6824
wget https://raw.githubusercontent.com/certbot/certbot/75499277be6699fd5a9b884837546391950a3ec9/certbot-auto
chmod +x ./certbot-auto
將certbot-auto置換即可
之後如果要安裝或定期更新:
安裝新站
./certbot-auto -d www.mysite.com --no-self-upgrade
定期更新
./certbot-auto renew --no-self-upgrade
參考資料來源:https://github.com/certbot/certbot/issues/6824
留言