mirror of
https://github.com/geerlingguy/ansible-role-php.git
synced 2024-11-24 12:06:02 +01:00
Merge pull request #29 from o2web/master
Add configurable max post size.
This commit is contained in:
commit
d378fef32a
@ -50,6 +50,7 @@ By default, all the extra defaults below are applied through the php.ini include
|
||||
php_max_execution_time: "60"
|
||||
php_realpath_cache_size: "32K"
|
||||
php_upload_max_filesize: "64M"
|
||||
php_post_max_size: "32M"
|
||||
php_date_timezone: "America/Chicago"
|
||||
php_sendmail_path: "/usr/sbin/sendmail -t -i"
|
||||
php_short_open_tag: false
|
||||
|
@ -24,6 +24,7 @@ php_memory_limit: "256M"
|
||||
php_max_execution_time: "60"
|
||||
php_realpath_cache_size: "32K"
|
||||
php_upload_max_filesize: "64M"
|
||||
php_post_max_size: "32M"
|
||||
php_date_timezone: "America/Chicago"
|
||||
|
||||
php_sendmail_path: "/usr/sbin/sendmail -t -i"
|
||||
|
@ -79,7 +79,7 @@ register_argc_argv = Off
|
||||
auto_globals_jit = On
|
||||
|
||||
;enable_post_data_reading = Off
|
||||
post_max_size = 32M
|
||||
post_max_size = {{ php_post_max_size }}
|
||||
auto_prepend_file =
|
||||
auto_append_file =
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user