Nginx stat()失败(13:权限被拒绝)

时间:2015-03-03 00:17:44

标签: php wordpress unix nginx

好的,所以以前发过一些这个但没有解决方案解决了我的问题。

我有网站配置,只是直接的HTML,CSS& JS和我试图添加一个wordpress网站。我对wordpress网站的配置如下。

#######################

server {
listen 80;

root /usr/share/nginx/threadtheatre/wordpress;
index index.php;
server_name threadtheatre.co.uk;

access_log   /var/log/nginx/thread.access.log;
    error_log    /var/log/nginx/thread.error.log;

location / {

            # try_files $uri $uri/ =404;
            try_files $uri $uri/ /index.php?q=$uri&$args;
}
    error_page 404 /404.html;

    error_page 500 502 503 504 /50x.html;
    location = /50x.html {
            root /usr/share/nginx/html;
    }

    location ~ \.php$ {
            try_files $uri =404;
            fastcgi_split_path_info ^(.+\.php)(/.+)$;
            fastcgi_pass unix:/var/run/php-fpm.sock;
            fastcgi_index index.php;
            include fastcgi_params;
    }

}

这是我日志中的错误

"/usr/share/nginx/threadtheatre/wordpress/index.php" failed (13: Permission denied), client: 109.155.53.189, server: threadtheatre.co.uk, request: "GET / HTTP/1.1", host: "threadtheatre.co.uk"

nginx正在使用nginx用户,同样也用于php-fpm。 nginx目录及其所有子目录具有以下权限。

drwxrwxr-x.  3 root nginx  4096 Feb  8 18:23 ..

如果我在网上浏览threadtheatre.co.uk,我会得到404。

希望有人可以帮忙解决这个问题。

利。

4 个答案:

答案 0 :(得分:8)

你还有这个问题吗?这个解释对我有用: https://serverfault.com/a/170263/140684

基本上nginx需要在应用程序路径上的每个目录上拥有执行权限。希望这会有所帮助。

答案 1 :(得分:6)

对我来说这是因为启用了selinux,请查看

selinuxenabled && echo enabled || echo disabled

如果启用,请尝试禁用

nano /etc/sysconfig/selinux
SELINUX=disabled

然后

reboot

答案 2 :(得分:0)

您是否已使用-R?

授予权限
chown -R nginx /usr/share/nginx/threadtheatre/wordpress/
chmod -R 644 /usr/share/nginx/threadtheatre/wordpress/

答案 3 :(得分:-1)

如果nginx托管在FedoraRedHat上,请更改SELinux策略,并允许nginx从路径 / home /路径/站点

chcon -R -t httpd_sys_content_t /home/path/site