CenterOS 中 Wordpress 使用 Nginx 时出现 Web 文件夹权限问题

CenterOS 中 Wordpress 使用 Nginx 时出现 Web 文件夹权限问题

操作系统:CentOS 版本 6.2

在 nginx.conf 中,我将 Web 用户设置为 nginx,如下所示,

user nginx nginx;

plugin/uploads 文件夹的格式如下

drwxr-xr-x. 11 nginx nginx 4096 23:09 plugins
drwxr-xr-x.  4 nginx nginx 4096 11:13 uploads

如您所见,plugins/uploads 文件夹归 nginx 所有,并且“rwx”归 nginx 所有,但是为什么当我尝试通过 wordpress 仪表板更新插件时,仍然被拒绝权限。

谢谢,

亚当

答案1

php-fpm 设置会覆盖 nginx.conf 中的用户/组设置,我只需要设置为“nginx”即可解决问题。

http://www.caiapps.com/web-user-and-group-setting-in-nginxphp-fpm-env/

相关内容