RT,无论用什么浏览器都是
建立安全连接失败
连接到 www.chillman.club 时发生错误。PR_END_OF_FILE_ERROR
/etc/nginx/conf.d/halo.conf
的配置如下,证书是腾讯云申请的确认有效,配置路径也没问题
server {
listen 80;
server_name www.chillman.club;
rewrite ^(.*) https://$host$1 permanent;
}
server {
listen 443 ssl;
server_name www.chillman.club;
ssl_certificate /etc/nginx/ssl/1_www.chillman.club_bundle.crt;
ssl_certificate_key /etc/nginx/ssl/2_www.chillman.club.key;
ssl_session_timeout 5m;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:HIGH:!aNULL:!MD5:!RC4:!DHE;
ssl_prefer_server_ciphers on;
location / {
proxy_set_header HOST $host;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_pass http://127.0.0.1:8090/;
}
}