Add max_input_vars and max_input_time vars.

This commit is contained in:
Jeff Geerling 2015-05-27 10:17:43 -05:00
parent 11f434dc89
commit 30e9ef1a33
3 changed files with 6 additions and 1 deletions

View File

@ -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"

View File

@ -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"

View File

@ -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 }}
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;