关于沃通免费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的默认首页。。、
这个到底是什么问题呢? 重启nginx了没?
nginx -t 有错误吗
回复 2# 的帖子
# /usr/local/nginx/sbin/nginx -tnginx: 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
# 可以按这个https://www.vpser.net/build/letsencrypt-free-ssl.html修改规范一点
页:
[1]