windcoder 发表于 2016-12-4 17:56:29

help,军哥,lnmp1.3下https配置一直失败

参考https://www.vpser.net/build/letsencrypt-free-ssl.html
https://www.vpser.net/manage/namecheap-free-ssl-nginx.html
这两个配置之后,http下没问题,但通过https访问时在chrome中提示
此网站无法提供安全连接

www.windcoder.com 发送的响应无效。
尝试运行 Windows 网络诊断。
ERR_SSL_PROTOCOL_ERROR
防火墙的443规则已添加,证书用的腾讯的
ngix上那个网站的配置信息如下:server
{
listen 80;
#listen [::]:80;
server_name www.windcoder.com windcoder.com;
index index.html index.htm index.php default.html default.htm default.php;
root /home/wwwroot/windcoder.com;
include wordpress.conf;
#error_page 404 /404.html;
include enable-php.conf;

location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
{
expires 30d;
}

location ~ .*\.(js|css)?$
{
expires 12h;
}

location ~ /\.
{
deny all;
}

access_log /home/wwwlogs/windcoder.com.log;
}
server {
listen 443 ssl;
#listen [::]:80;
server_name www.windcoder.com;
index index.html index.htm index.php default.html default.htm default.php;
root /home/wwwroot/windcoder.com;
ssl on;
ssl_certificate /usr/local/nginx/keystore/1_www.windcoder.com_bundle.crt;
ssl_certificate_key /usr/local/nginx/keystore/2_www.windcoder.com.key;
ssl_session_timeout 5m;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_ciphers AESGCM:ALL:!DH:!EXPORT:!RC4:+HIGH:!MEDIUM:!LOW:!aNULL:!eNULL;
ssl_prefer_server_ciphers on;

include wordpress.conf;
#error_page 404 /404.html;
location ~ [^/]\.php(/|$){
# comment try_files $uri =404; to enable pathinfo
try_files $uri =404;
fastcgi_pass unix:/tmp/php-cgi.sock;
fastcgi_index index.php;
include fastcgi.conf;
#include pathinfo.conf;
}

location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
{
expires 30d;
}

location ~ .*\.(js|css)?$
{
expires 12h;
}

location ~ /\.
{
deny all;
}

access_log /home/wwwlogs/https.windcoder.com.log;
}

[ 本帖最后由 windcoder 于 2016-12-4 17:59 编辑 ]

licess 发表于 2016-12-5 09:49:05

回复 1# 的帖子

可能证书有问题吧

ceshi132 发表于 2016-12-5 14:08:38

回复 1# 的帖子

你太搞笑了,百度云加速的https访问是收费的,而且需要将证书上传到百度云控制台。你是这么做的吗?

cbjc 发表于 2016-12-11 19:44:27

我搞的腾讯云的免费证书也不能用

windcoder 发表于 2016-12-12 13:39:05

原帖由 ceshi132 于 2016-12-5 14:08 发表 http://bbs.vpser.net/images/common/back.gif
你太搞笑了,百度云加速的https访问是收费的,而且需要将证书上传到百度云控制台。你是这么做的吗? 我又没用他的https加速。。
页: [1]
查看完整版本: help,军哥,lnmp1.3下https配置一直失败