1.nginx 查看日志 => (13: Permission denied)
//查看日志
vim /usr/local/nginx/logs/error.log
权限被拒绝
解决办法:
1.查看nginx
启动用户和使用用户是否一致
ps aux | grep nginx
用户不一致:
2.修改用户
打开 nginx.conf 文件 (一般在 etc/nginx 目录下)
vim nginx.conf
把 nginx 改为 root
3.重启nginx 服务
service nginx restart
4.再次查看用户是否一致
ps aux | grep nginx
用户已经统一,现在可以正常访问了