library/roles/php-fpm/defaults/main.yml: Set the php user group as the php username, so there is no need to change both the variables anymore.

This commit is contained in:
Andrea Dell'Amico 2018-04-11 16:30:49 +02:00
parent f36c4061d4
commit 8f830bc61b
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ phpfpm_remove_default_pool: True
phpfpm_use_default_template: True
phpfpm_create_users: True
phpfpm_default_user: php-fpm
phpfpm_default_group: php-fpm
phpfpm_default_group: '{{ phpfpm_default_user }}'
phpfpm_default_listen: "127.0.0.1:9000"
phpfpm_default_allowed_clients: "127.0.0.1"
phpfpm_default_pm: "dynamic"