Apache无法访问文件



我试图在树莓派上为django开发的网站设置一个apache服务器。

sudo chown 777 /media/pi/website/

当我试图给服务器权限访问文件(wsgi, css, js, html ++),控制台返回,我没有权限。我正在尝试root@pi和sudo,没有任何效果。它只是返回:"不允许操作"。

您的SELinux配置如何?

我猜您的主机正在执行SELinux,而您的目录没有正确的安全上下文。

这是我的:

cat /etc/selinux/config 
# This file controls the state of SELinux on the system.
# SELINUX= can take one of these three values:
# enforcing - SELinux security policy is enforced.
# permissive - SELinux prints warnings instead of enforcing.
# disabled - No SELinux policy is loaded.
SELINUX=permissive
# SELINUXTYPE= can take one of these two values:
# default - equivalent to the old strict and targeted policies
# mls     - Multi-Level Security (for military and educational use)
# src     - Custom policy built from source
SELINUXTYPE=default
# SETLOCALDEFS= Check local definition changes
SETLOCALDEFS=0

相关内容

  • 没有找到相关文章

最新更新