mirror of
https://github.com/geerlingguy/ansible-role-php.git
synced 2024-11-24 12:06:02 +01:00
Make serialize_precision a parameter
According to the php documentation, the default version for php should be "-1". Before php7.1 it was 17, so I parameterized it, and made the default "-1"
This commit is contained in:
parent
e3fab5a6ed
commit
3b6255f1aa
@ -76,6 +76,7 @@ php_output_buffering: "4096"
|
||||
php_short_open_tag: "Off"
|
||||
php_disable_functions: []
|
||||
php_precision: 14
|
||||
php_serialize_precision: "-1"
|
||||
|
||||
php_session_cookie_lifetime: 0
|
||||
php_session_gc_probability: 1
|
||||
|
@ -13,7 +13,7 @@ zlib.output_compression = Off
|
||||
|
||||
implicit_flush = Off
|
||||
unserialize_callback_func =
|
||||
serialize_precision = 17
|
||||
serialize_precision = {{ php_serialize_precision }}
|
||||
disable_functions = {{ php_disable_functions|join(",") }}
|
||||
disable_classes =
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user