我正在使用Nginx运行debian squeeze webserver,我无法使SSL工作.我得到的错误不是来自apache,而是来自客户端Web浏览器,出现“连接超时错误”
我从StartSSL购买了一个SSL证书,当它无法正常工作时,我尝试生成自己的SSL证书进行故障排除.两者都产生了相同的错误,并且都没有工作,我的Nginx日志没有显示任何内容.
我的SSL配置如下所示:
server {
listen 443 default_server ssl;
server_name tarror.org www.tarror.org;
ssl on;
ssl_certificate /srv/ssl/Nginx.pem;
ssl_certificate_key /srv/ssl/Nginx.key;
root /wdata/tarror.org;
index index.PHP index.htm index.html;
location ~ .PHP${
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.PHP;
fastcgi_param SCRIPT_FILENAME /wdata/tarror.org$fastcgi_script_name;
include fastcgi_params;
}
}
在Web服务器的防火墙中打开端口443.
原文链接:https://www.f2er.com/nginx/435563.html