Merge pull request #235 from ajardan/master

Make precision configurable, add php-cgi config
This commit is contained in:
Jeff Geerling 2020-03-06 09:51:47 -06:00 committed by GitHub
commit e949e81681
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 1 deletions

View File

@ -109,6 +109,7 @@ By default, all the extra defaults below are applied through the php.ini include
php_session_save_handler: files
php_session_save_path: ''
php_disable_functions: []
php_precision: 14
Various defaults for PHP. Only used if `php_use_managed_ini` is set to `true`.

View File

@ -72,6 +72,7 @@ php_sendmail_path: "/usr/sbin/sendmail -t -i"
php_output_buffering: "4096"
php_short_open_tag: "Off"
php_disable_functions: []
php_precision: 14
php_session_cookie_lifetime: 0
php_session_gc_probability: 1

View File

@ -6,7 +6,7 @@
engine = On
short_open_tag = {{ php_short_open_tag }}
precision = 14
precision = {{ php_precision }}
output_buffering = {{ php_output_buffering }}
zlib.output_compression = Off