1 首先需要先购买ssl证书,各大云服务厂商都有该服务,也可以申请免费的。
2 把秘钥和证书文件都拷贝到对应nginx的conf目录下
3 修改nginx配置文件,配置ssl如下:
server {
        listen        443 ssl;
        server_name       www.xxx.cn localhost;  #xxx填对应域名
        ssl_certificate      xxx.crt;     #xxx对应证书
        ssl_certificate_key  xxx.key;   #xxx对应证书秘钥
        ssl_session_cache    shared:SSL:1m;
        ssl_session_timeout  5m;
        ssl_ciphers  HIGH:!aNULL:!MD5;
        ssl_prefer_server_ciphers  on;
        location / {
            root   html;
            index  index.html index.htm;
        }
然后重启nginx:/usr/local/nginx/sbin/nginx -s reload
通过浏览器访问https://域名