From 7ace96baaa16dc292cf8780d3fd552daba99869b Mon Sep 17 00:00:00 2001 From: tituspijean Date: Fri, 25 Dec 2020 19:36:30 +0100 Subject: [PATCH] Do not use www-data as PHP-FPM group --- conf/php-fpm.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/conf/php-fpm.conf b/conf/php-fpm.conf index 47b65bf..3803ae6 100644 --- a/conf/php-fpm.conf +++ b/conf/php-fpm.conf @@ -21,7 +21,7 @@ ; Note: The user is mandatory. If the group is not set, the default user's group ; will be used. user = __USER__ -group = www-data +group = __USER__ ; The address on which to accept FastCGI requests. ; Valid syntaxes are: @@ -45,7 +45,7 @@ listen = /var/run/php-fpm-__USER__.sock ; Default Values: user and group are set as the running user ; mode is set to 0660 listen.owner = __USER__ -listen.group = www-data +listen.group = __USER__ listen.mode = 0660 ; When POSIX Access Control Lists are supported you can set them using ; these options, value is a comma separated list of user/group names.