SSL证书
安装certbox
如果有的话,就不必再安装了。
yum install certbot python2-certbot-nginx
更新证书
certbot renew
FAQ
Q: UnicodeDecodeError: 'ascii' codec can't decode byte 0xe8 in position 1: ordinal not in range(128)
A:
编辑:/bin/certbot
加入:
import sys
reload(sys)
sys.setdefaultencoding('utf-8')