mirror of
https://github.com/geerlingguy/ansible-role-php.git
synced 2025-01-09 19:27:34 +01:00
Add max_input_vars and max_input_time vars.
This commit is contained in:
parent
11f434dc89
commit
30e9ef1a33
@ -48,6 +48,8 @@ By default, all the extra defaults below are applied through the php.ini include
|
|||||||
|
|
||||||
php_memory_limit: "256M"
|
php_memory_limit: "256M"
|
||||||
php_max_execution_time: "60"
|
php_max_execution_time: "60"
|
||||||
|
php_max_input_time: "60"
|
||||||
|
php_max_input_vars: "1000"
|
||||||
php_realpath_cache_size: "32K"
|
php_realpath_cache_size: "32K"
|
||||||
php_upload_max_filesize: "64M"
|
php_upload_max_filesize: "64M"
|
||||||
php_post_max_size: "32M"
|
php_post_max_size: "32M"
|
||||||
|
@ -35,6 +35,8 @@ php_use_managed_ini: true
|
|||||||
php_expose_php: "On"
|
php_expose_php: "On"
|
||||||
php_memory_limit: "256M"
|
php_memory_limit: "256M"
|
||||||
php_max_execution_time: "60"
|
php_max_execution_time: "60"
|
||||||
|
php_max_input_time: "60"
|
||||||
|
php_max_input_vars: "1000"
|
||||||
php_realpath_cache_size: "32K"
|
php_realpath_cache_size: "32K"
|
||||||
php_upload_max_filesize: "64M"
|
php_upload_max_filesize: "64M"
|
||||||
php_post_max_size: "32M"
|
php_post_max_size: "32M"
|
||||||
|
@ -31,7 +31,8 @@ expose_php = {{ php_expose_php }}
|
|||||||
;;;;;;;;;;;;;;;;;;;
|
;;;;;;;;;;;;;;;;;;;
|
||||||
|
|
||||||
max_execution_time = {{ php_max_execution_time }}
|
max_execution_time = {{ php_max_execution_time }}
|
||||||
max_input_time = 60
|
max_input_time = {{ php_max_input_time }}
|
||||||
|
max_input_vars = {{ php_max_input_vars }}
|
||||||
memory_limit = {{ php_memory_limit }}
|
memory_limit = {{ php_memory_limit }}
|
||||||
|
|
||||||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||||
|
Loading…
Reference in New Issue
Block a user