[PHP-FPM] Move max_execution_time and max_input_time to general PHP config, removed as fixed php_admin_value
parent
aa39be7ea6
commit
c0b590fff6
|
@ -1,2 +1,4 @@
|
||||||
session.save_handler = redis
|
session.save_handler = redis
|
||||||
session.save_path = "tcp://redis:6379"
|
session.save_path = "tcp://redis:6379"
|
||||||
|
max_execution_time = 1200
|
||||||
|
max_input_time = 1200
|
||||||
|
|
|
@ -11,8 +11,6 @@ access.log = /proc/self/fd/2
|
||||||
clear_env = no
|
clear_env = no
|
||||||
catch_workers_output = yes
|
catch_workers_output = yes
|
||||||
php_admin_value[memory_limit] = 256M
|
php_admin_value[memory_limit] = 256M
|
||||||
php_admin_value[max_execution_time] = 1200
|
|
||||||
php_admin_value[max_input_time] = 1200
|
|
||||||
|
|
||||||
[web-worker]
|
[web-worker]
|
||||||
user = www-data
|
user = www-data
|
||||||
|
@ -27,6 +25,3 @@ access.log = /proc/self/fd/2
|
||||||
clear_env = no
|
clear_env = no
|
||||||
catch_workers_output = yes
|
catch_workers_output = yes
|
||||||
php_admin_value[memory_limit] = 512M
|
php_admin_value[memory_limit] = 512M
|
||||||
php_admin_value[max_execution_time] = 1200
|
|
||||||
php_admin_value[max_input_time] = 1200
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue