nginx反向代理访问图片403问题

2020-07-14 349

这里一般是权限的问题

解决办法
修改nginx.conf配置文件
找到最顶部的user nobody;默认应该是加了注解的
修改为:user root;
user root;
1 0