配置安全域名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;
}
}
上一篇: SSM到Spring Boot 从零开发校园商铺平台
下一篇: php 无限极分类
推荐阅读
-
【转载】网站配置Https证书系列(一):腾讯云申请免费的SSL证书的流程步骤(即https安全连接使用的证书)
-
linux系统下使用nginx反向代理asp.net core,并配置免费的https证书
-
配置安全域名https申请免费证书并配置nginx运行环境
-
网站是HTTP?10分钟变成HTTPS!域名免费添加配置SSL证书,变成https//环境
-
linux系统下使用nginx反向代理asp.net core,并配置免费的https证书
-
网站是HTTP?10分钟变成HTTPS!域名免费添加配置SSL证书,变成https//环境
-
配置安全域名https申请免费证书并配置nginx运行环境
-
【转载】网站配置Https证书系列(一):腾讯云申请免费的SSL证书的流程步骤(即https安全连接使用的证书)