Merge pull request #269 from porcospino/patch-1

Set php-fpm socket owner and group
This commit is contained in:
Jeff Geerling 2020-03-10 17:54:18 -05:00 committed by GitHub
commit e3fab5a6ed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,6 +4,9 @@ listen.allowed_clients = 127.0.0.1
user = {{ php_fpm_pool_user }}
group = {{ php_fpm_pool_group }}
listen.owner = {{ php_fpm_pool_user }}
listen.group = {{ php_fpm_pool_group }}
pm = dynamic
pm.max_children = 50
pm.start_servers = 5