mirror of
https://github.com/geerlingguy/ansible-role-php.git
synced 2024-11-24 12:06:02 +01:00
Fixes #99: Allow override of output_buffering setting.
This commit is contained in:
parent
e03ffd0104
commit
041e7bc0d5
@ -68,6 +68,7 @@ By default, all the extra defaults below are applied through the php.ini include
|
||||
php_post_max_size: "32M"
|
||||
php_date_timezone: "America/Chicago"
|
||||
php_sendmail_path: "/usr/sbin/sendmail -t -i"
|
||||
php_output_buffering: "4096"
|
||||
php_short_open_tag: false
|
||||
php_error_reporting: "E_ALL & ~E_DEPRECATED & ~E_STRICT"
|
||||
php_display_errors: "Off"
|
||||
|
@ -53,6 +53,7 @@ php_post_max_size: "32M"
|
||||
php_date_timezone: "America/Chicago"
|
||||
|
||||
php_sendmail_path: "/usr/sbin/sendmail -t -i"
|
||||
php_output_buffering: "4096"
|
||||
php_short_open_tag: false
|
||||
|
||||
php_session_cookie_lifetime: 0
|
||||
|
@ -8,7 +8,7 @@ engine = On
|
||||
short_open_tag = {{ php_short_open_tag }}
|
||||
asp_tags = Off
|
||||
precision = 14
|
||||
output_buffering = 4096
|
||||
output_buffering = {{ php_output_buffering }}
|
||||
|
||||
zlib.output_compression = Off
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user