欢迎光临
我们一直在努力

如何在Nginx服务器上安装SSL证书

建站超值云服务器,限时71元/月

1. 获取服务器证书文件

下载好压缩包,找到Nginx文件夹中的证书。

2. 安装服务器证书

复制 server.key、server.cer 文件到 Nginx 安装目录下的 conf 目录。

打开 Nginx 安装目录下 conf 目录中的 nginx.conf 文件

找到

#server {
# listen 443;
# server_name localhost;
# ssl on;
# ssl_certificate cert.pem;
# ssl_certificate_key cert.key;
# ssl_session_timeout 5m;
# ssl_protocols SSLv2 SSLv3 TLSv1;
# ssl_ciphers ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MED
IUM:+LOW:+SSLv2:+EXP;
# ssl_prefer_server_ciphers on;
# location / {
# root html;
# index index.html index.htm;
# }
#}

将其修改为

server {
listen 443;
server_name localhost;
ssl on;
ssl_certificate server.cer;
ssl_certificate_key server.key;
ssl_session_timeout 5m;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_ciphers ECDH:AESGCM:HIGH:!RC4:!DH:!MD5:!aNULL:!eNULL;
ssl_prefer_server_ciphers on;
location / {
root html;
index index.html index.htm;
}
}

保存退出,并重启 Nginx。

通过 https 方式访问您的站点,测试站点证书的安装配置。

注:server.cer 是服务器证书 中级证书的整合

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » 如何在Nginx服务器上安装SSL证书
分享到: 更多 (0)