- 积分
- 14
- 威望
-
- 金钱
-
- 注册时间
- 2015-6-3
- 在线时间
- 小时
- 最后登录
- 1970-1-1
|
楼主 |
发表于 2015-7-6 16:01:05
|
显示全部楼层
回复 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
好像是正常的,我的域名是在dot.tk申请的免费的,这有没有关系,我vps只有一个IP,只能是访问lnmp默认的目录。
/home/wwwroot/default
新建的是:/home/wwwroot/www.dotrx.tk
无论是通过IP:**.62.104.148还是域名访问都是去到默认的“恭喜您,LNMP一键安装包安装成功”页面~怎么回事呢?
我的wordpress是放到了/home/wwwroot/www.dotrx.tk目录下的,,
这是vhost的配置文件:
[root@www vhost]# cat www.dotrx.tk.conf
server
{
listen 80;
#listen [::]:80;
server_name www.dotrx.tk dotrx.tk;
index index.html index.htm index.php default.html default.htm default.php;
root /home/wwwroot/www.dotrx.tk;
include wordpress.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 off;
}
[ 本帖最后由 wcg017 于 2015-7-6 16:06 编辑 ] |
|