小编Lee*_*ams的帖子

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

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

我有网站配置,只是直接的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;
    }

}
Run Code Online (Sandbox Code Playgroud)

这是我日志中的错误

"/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"
Run Code Online (Sandbox Code Playgroud)

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

php unix wordpress nginx

3
推荐指数
2
解决办法
2万
查看次数

标签 统计

nginx ×1

php ×1

unix ×1

wordpress ×1