我正在尝试配置nginx以从目录中提供静态文件。并尝试访问路径/ static /
时获得403 Forbidden这是我配置中的一部分:
user root;
<...>
http {
<...>
server {
<...>
location /static/
{
alias /home/my_user/static/;
autoindex on;
}
<...>
}
}
我还具有/home/my_user/static/
的777递归权限,是的,我在目录内具有index.html。而且仍然出现错误。为什么?
os:Centos 7
答案 0 :(得分:1)
启用标志
/usr/sbin/setsebool -P httpd_read_user_content true
解决问题。