chore(server): allow configuring common opcache and fpm optimizations

This commit is contained in:
2021-10-17 21:03:17 +02:00
parent 80317cae6a
commit 5bc19d4ddc
3 changed files with 28 additions and 12 deletions

View File

@ -6,9 +6,9 @@ group = www-data
listen = 127.0.0.1:9000
pm = dynamic
pm.max_children = 64
pm.start_servers = 32
pm.min_spare_servers = 24
pm.max_spare_servers = 48
pm.max_children = {{ nextcloud_fpm_max_children }}
pm.start_servers = {{ nextcloud_fpm_start_servers }}
pm.min_spare_servers = {{ nextcloud_fpm_min_spare_servers }}
pm.max_spare_servers = {{ nextcloud_fpm_max_spare_servers }}
;pm.max_requests=500