leder_gao 发表于 2016-1-26 16:57:56

关于沃通免费SSL的安装问题

军歌,你好,我在网站申请了 沃通的免费SSL。。然后配置如下:
server
    {
      listen 443;
      #listen [::]:80;
      server_name www.xxx.cn xxx.cn;
      index index.html index.htm index.php default.html default.htm default.php;
      root/home/xxx.cn;

      ssl on;
      ssl_certificate xxx.cn_bundle.crt;
      ssl_certificate_key xxx.cn.key;
      #ssl_protocols TLSv1 TLSv1.1 TLSv1.2;

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

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

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

      access_log/home/wwwlogs/www.xxx.cn.logaccess;
    }

我的网站是wordpress的。。
那样配置完后。。nginx 运行也正常,但是访问的时候 https://www.xxx.cn 的时候 显示附近显示的图片。。也就是lnmp的默认首页。。、
这个到底是什么问题呢?

licess 发表于 2016-1-26 18:52:08

重启nginx了没?

nginx -t 有错误吗

leder_gao 发表于 2016-1-26 18:54:55

回复 2# 的帖子

# /usr/local/nginx/sbin/nginx -t
nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok
nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful
# /etc/init.d/nginx restart
Stoping nginx...done
Starting nginx...done
#

licess 发表于 2016-1-26 19:01:08

可以按这个https://www.vpser.net/build/letsencrypt-free-ssl.html修改规范一点
页: [1]
查看完整版本: 关于沃通免费SSL的安装问题