debian如何安装Let's Encrypt

如果python默认版本不是2,删除 /usr/bin/python

添加软引用 in -s /usr/bin/python2  /usr/bin/python

第一步,卸载virtualenv 

apt-get purge python-virtualenv python3-virtualenv virtualenv

如果pip没有就安装pip  apt-get install python-pip

pip uninstall virtualenv

第二步,重新安装 virtualenv

pip install virtualenv

安装证书

apt-get install git
git clone https://github.com/letsencrypt/letsencrypt
cd letsencrypt
./letsencrypt-auto certonly --server https://acme-v01.api.letsencrypt.org/directory

//--输入 邮箱和域名

 //更新https 证书

./letsencrypt-auto certonly --renew-by-default

//输入 ip和域名

 

转载于:https://www.cnblogs.com/hui413027075/p/8390788.html

你可能感兴趣的:(python,git)