Fixes #99: Allow override of output_buffering setting.

This commit is contained in:
Jeff Geerling 2016-03-25 17:05:33 -05:00
parent e03ffd0104
commit 041e7bc0d5
3 changed files with 3 additions and 1 deletions

View File

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

View File

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

View File

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