php – 如何更改NGINX用户?

前端之家收集整理的这篇文章主要介绍了php – 如何更改NGINX用户?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个 PHP脚本,它创建一个目录并将图像输出到目录.这在Apache下运行得很好但我们最近决定切换到Nginx以更多地使用我们有限的RAM.我正在使用PHP mkdir()命令来创建目录:
mkdir(dirname($path['image']['server']),0755,true);

切换到Nginx后,我收到以下警告:

Warning: mkdir(): Permission denied in ...

我已经检查了父目录的所有权限,所以我确定我可能需要更改NginxPHP-FPM’用户’,但我不知道该怎么做(我从来没有指定用户APACHE的权限).我似乎无法找到关于此的更多信息.任何帮助都会很棒!

(注意:除了这个小小的挂机,转换到Nginx已经非常无缝了;我第一次使用它,它只花了大约10分钟才能启动和运行Nginx.现在我只是在熨烫解决问题.)

运行Nginx& PHP-fpm as www:www

1. Nginx

编辑Nginx.conf并将user设置为www www;

If the master process is run as root,then Nginx will
setuid()/setgid() to USER/GROUP. If GROUP is not specified,then Nginx
uses the same name as USER. By default it’s nobody user and nobody or
nogroup group or the –user=USER and –group=GROUP from the
./configure script.

2. PHP-FPM

编辑php-fpm.conf并将用户和组设置为www.

user – Unix user of processes. Default “www-data”

group – Unix group of processes. Default “www-data”

原文链接:https://www.f2er.com/php/139909.html

猜你在找的PHP相关文章