wget https://dl.eff.org/certbot-auto chmod a+x certbot-auto
nginx
yunxservice nginx stop
./certbot-auto certonly --standalone --email 你的郵箱地址 -d 你的域名地址
當前網站有多個域名時需在後面增長,例如nginx
./certbot-auto certonly --standalone --email 你的郵箱地址 -d 你的域名1 -d 你的域名2
tree /etc/letsencrypt/live/
# TLS 基本設置 ssl_certificate /etc/letsencrypt/live/www.just4fun.site/fullchain.pem;#證書位置 ssl_certificate_key /etc/letsencrypt/live/www.just4fun.site/privkey.pem;# 私鑰位置
./certbot-auto renew
可能報錯處理
nginx: [emerg] the
"ssl"
parameter requires ngx_http_ssl_module
in
/usr/local/nginx/conf/nginx.conf:37
nginx: [emerg] the "ssl"parameter requires ngx_http_ssl_module in/usr/local/nginx/conf/nginx.conf:37
緣由也很簡單,nginx缺乏http_ssl_module模塊,編譯安裝的時候帶上--with-http_ssl_module配置就好了網站
./configure --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_moduleui