Set php-fpm socket owner and group

Fixes #166
This commit is contained in:
Chris Fryer 2019-06-19 23:56:25 +01:00 committed by GitHub
parent 903e595c4b
commit ef69a5ffe5
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