mirror of
https://github.com/geerlingguy/ansible-role-php.git
synced 2025-01-23 21:31:19 +01:00
Merge pull request #235 from ajardan/master
Make precision configurable, add php-cgi config
This commit is contained in:
commit
e949e81681
@ -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`.
|
||||
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user