错误:Nginx 403 forbidden

当Nginx读取本地目录时如果收到403错误,是由于nginx的权限问题。
修改nginx的权限:

[root@iZ2834tthbyZ ~]# cd ~
[root@iZ2834tthbyZ ~]# cd /etc/nginx/
[root@iZ2834tthbyZ nginx]# vim nginx.conf

编辑nginx.conf
user nginx; 改为 user root;
按esc进入命令模式
输入:wq保存退出

重新启动nginx:

[root@iZ2834tthbyZ nginx]# cd ~
[root@iZ2834tthbyZ ~]# nginx -s reload

你可能感兴趣的:(错误:Nginx 403 forbidden)