From 5aa6a33e5125c6509f7549c7281b82c765bd75b9 Mon Sep 17 00:00:00 2001 From: Alan Orth Date: Sat, 29 Mar 2025 20:51:25 +0300 Subject: [PATCH] roles/php-fpm: set user and group based on webserver We use either caddy or nginx, which are conveniently named the same as the Unix user and group. --- roles/php-fpm/templates/php8.2-pool.conf.j2 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/roles/php-fpm/templates/php8.2-pool.conf.j2 b/roles/php-fpm/templates/php8.2-pool.conf.j2 index 392bada..8239d00 100644 --- a/roles/php-fpm/templates/php8.2-pool.conf.j2 +++ b/roles/php-fpm/templates/php8.2-pool.conf.j2 @@ -27,8 +27,8 @@ ; --allow-to-run-as-root option to work. ; Default Values: The user is set to master process running user by default. ; If the group is not set, the user's group is used. -user = nginx -group = nginx +user = {{ webserver }} +group = {{ webserver }} ; The address on which to accept FastCGI requests. ; Valid syntaxes are: @@ -52,8 +52,8 @@ listen = /run/php/php8.2-fpm-{{ domain_name }}.sock ; and group can be specified either by name or by their numeric IDs. ; Default Values: Owner is set to the master process running user. If the group ; is not set, the owner's group is used. Mode is set to 0660. -listen.owner = nginx -listen.group = nginx +listen.owner = {{ webserver }} +listen.group = {{ webserver }} ;listen.mode = 0660 ; When POSIX Access Control Lists are supported you can set them using