1

访问页面时返回403,直接使用ip+端口访问是没有问题的,怀疑nginx配置有问题。

查看nginx日志

查看nginx.conf文件,判断日志的输出地址。

vi /etc/nginx/nginx.conf

打开error.log,发现类型的日志,大致确认是权限问题

2017/09/04 10:52:25 [error] 8196#0: *14 open() "/home/guopei/blog/www/static/js/admin.bundle.js" failed (13: Permission denied), client: 104.192.108.10, server: geekfe.com, request: "GET /static/js/admin.bundle.js?v=67cf9.js HTTP/1.1", host: "blog.geekfe.com", referrer: "http://blog.geekfe.com/admin"

查看nginx进程

ps aux|grep nginx

返回如下

root      9145  0.0  0.4 122288  2176 ?        Ss   10:56   0:00 nginx: master process /usr/sbin/nginx
root      9146  0.0  0.7 122808  3880 ?        S    10:56   0:00 nginx: worker process
root      9212  0.0  0.1 112644   960 pts/0    S+   10:57   0:00 grep --color=auto nginx

查看nginx.conf

user nginx;

改成

user root;

重启nginx服务

service nginx restart;

重启后问题解决。


冰果
99 声望5 粉丝