Skip to content

Commit

Permalink
#1027 make output_buffering optional (#1028)
Browse files Browse the repository at this point in the history
Add output_buffering variable for PHP config
  • Loading branch information
matgargano authored and swalkinshaw committed Nov 11, 2018
1 parent 537edff commit 7c393a4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions roles/php/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ php_session_cookie_secure: 'Off'
php_upload_max_filesize: 25M
php_track_errors: 'Off'
php_timezone: '{{ ntp_timezone }}'
php_output_buffering: 'Off'

php_opcache_enable: 1
php_opcache_enable_cli: 1
Expand Down
1 change: 1 addition & 0 deletions roles/php/templates/php.ini.j2
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ track_errors = {{ php_track_errors }}
upload_max_filesize = {{ php_upload_max_filesize }}
expose_php = Off
date.timezone = {{ php_timezone }}
output_buffering = {{ php_output_buffering }}

[mysqlnd]
mysqlnd.collect_memory_statistics = {{ php_mysqlnd_collect_memory_statistics }}
Expand Down

0 comments on commit 7c393a4

Please sign in to comment.