mirror of
https://github.com/geerlingguy/ansible-role-php.git
synced 2024-11-28 12:45:16 +01:00
Make precision configurable
This commit is contained in:
parent
e543933a92
commit
6a2e9aa1d2
@ -98,6 +98,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`.
|
||||
|
||||
|
@ -67,6 +67,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
|
||||
|
@ -7,7 +7,7 @@
|
||||
engine = On
|
||||
short_open_tag = {{ php_short_open_tag }}
|
||||
asp_tags = Off
|
||||
precision = 14
|
||||
precision = {{ php_precision }}
|
||||
output_buffering = {{ php_output_buffering }}
|
||||
|
||||
zlib.output_compression = Off
|
||||
|
Loading…
Reference in New Issue
Block a user