配置安全域名https申请免费证书并配置nginx运行环境

Posted 子钦加油

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了配置安全域名https申请免费证书并配置nginx运行环境相关的知识,希望对你有一定的参考价值。

补全信息时选项

在这一步需要去查看进度,下载对应文件上传到对应站点根目录里按照要求建的隐藏类型的文件 如下图

讲证书文件按照下面操作

进行配置项配置https 如下

详情下载附件

server {

  listen 443;

  server_name wap.ssgsrz.com;

   ssl on;

   root /web/wap_ssgsrzw;

   index index.html index.htm;

  ssl_certificate cert/214757429410741.pem;

  ssl_certificate_key cert/214757429410741.key;

  ssl_session_timeout 5m;

  ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:ECDHE:ECDH:AES:HIGH:!NULL:!aNULL:!MD5:!ADH:!RC4;

  ssl_protocols TLSv1 TLSv1.1 TLSv1.2;

   ssl_prefer_server_ciphers on;

  location / {

    root /web/wap_ssgsrzw;

     index index.html index.htm index.php;

   }

   location ~ .*\\.(php|php5)?$ {

    root /web/wap_ssgsrzw;

     fastcgi_pass 127.0.0.1:9000;

     fastcgi_index index.php;

     fastcgi_param HTTPS on;

     fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;

     include fastcgi_params; #new line include fastcgi.conf;

   }

}

 

以上是关于配置安全域名https申请免费证书并配置nginx运行环境的主要内容,如果未能解决你的问题,请参考以下文章

nginx配置ssl证书实现https访问

nginx配置ssl证书后无法访问https

阿里云申请免费SSL证书并使用Nginx配置http强制跳转https。

阿里云域名和服务器 nginx 配置https

在NGINX上配置HTTPS服务

nginx配置ssl证书实现https访问