ssl加密访问证书不受信任


新购买了一个商业SSL证书,但是配置好之后一直显示 链接不受信任。
求各位大神指点一下,为了更好的描述问题。放出网址,这不是做广告,希望大神给点意见。
下面是nginx的配置文件,
https://www.wuaidu.com


 server {

    listen 443;
    server_name www.wuaidu.com;
    index index.html index.htm index.php default.html default.htm default.php;
    root  /var/www;

    include yb.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;
    }

    access_log  /var/wwwlogs/www.wuaidu.com.log  access;

    ssl on; 
    ssl_certificate /var/www/conf/wuaidu_com.crt; 
    ssl_certificate_key /var/www/conf/server.key;
}

希望大家能帮忙看一下是什么问题,我在火狐下测试一直都是链接不受信任,在IE下则显示连接没有加密。

想死的心都有了,擦 请输入图片描述

ssl nginx

新垣结衣D颜 10 years, 1 month ago

Linux 上火狐 28 访问正常。你查看一下证书细节(点下边那个箭头然后在「添加例外」里有查看证书的选项),是不是你的证书还是被替换了?

江协伟的小号 answered 10 years, 1 month ago

Your Answer