[PHP-FPM, Nginx] Move some PHP parameters from Nginx to FPM configuration file

This commit is contained in:
André
2018-06-10 14:31:24 +02:00
parent 27d3388579
commit e79429beef
2 changed files with 7 additions and 3 deletions

View File

@@ -10,6 +10,9 @@ listen = [::]:9001
access.log = /proc/self/fd/2
clear_env = no
catch_workers_output = yes
php_admin_value[memory_limit] = 256M
php_admin_value[max_execution_time] = 1200
php_admin_value[max_input_time] = 1200
[web-worker]
user = www-data
@@ -23,3 +26,7 @@ listen = [::]:9002
access.log = /proc/self/fd/2
clear_env = no
catch_workers_output = yes
php_admin_value[memory_limit] = 256M
php_admin_value[max_execution_time] = 1200
php_admin_value[max_input_time] = 1200