Nginx替换https证书步骤
简介
Nginx替换https证书步骤:
1、上传并替换证书文件;
2、nginx -s reload加载新证书;
3、浏览器查看确认证书是否生效;
详细说明
1、上传并替换证书文件
从nginx.conf或其子配置中查看ssl证书配置,例如:
ssl_certificate /opt/certs/xxx.com_bundle.crt;
ssl_certificate_key /opt/certs/xxx.com.key;
将证书文件上传至指定服务器。
cd /opt/
rz 上传证书文件
mv xxx.com_bundle.crt /opt/certs/
mv xxx.com.key /opt/certs/
2、nginx -s reload加载新证书
ps -ef|grep nginx
./nginx -s reload
3、浏览器查看确认证书是否生效;
刷新浏览器页面,点击浏览器地址栏前面的锁图标,查看证书信息,确认有效期如果为新证书的,那么就表明证书替换成功。
如下图示:
(完)