From 42a2a7ba35dd8e5c430141777260ff45a775c326 Mon Sep 17 00:00:00 2001 From: Alexander Meindl Date: Sat, 3 Aug 2024 09:07:05 +0200 Subject: [PATCH] Fix custom pool for fpm configuration --- roles/php_fpm/tasks/pool.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/php_fpm/tasks/pool.yml b/roles/php_fpm/tasks/pool.yml index 62ade5c..f6deb6a 100644 --- a/roles/php_fpm/tasks/pool.yml +++ b/roles/php_fpm/tasks/pool.yml @@ -26,4 +26,4 @@ group: root notify: Restart php-fpm vars: - active_php_fpm_listen: "{{ php_fpm_base + '-' + pool.pool + '.sock' if instance is defined and pool.pool is defined and pool.pool != 'www' else php_fpm_listen }}" + active_php_fpm_listen: "{{ php_fpm_base + '-' + pool.pool + '.sock' if pool.pool is defined and pool.pool != 'www' else php_fpm_listen }}"