mirror of
https://github.com/geerlingguy/ansible-role-php.git
synced 2024-11-15 10:35:11 +01:00
Merge pull request #153 from stevenspasbo/master
Added php option for disable_functions
This commit is contained in:
commit
e863c348c3
@ -89,6 +89,7 @@ By default, all the extra defaults below are applied through the php.ini include
|
||||
php_session_gc_maxlifetime: 1440
|
||||
php_session_save_handler: files
|
||||
php_session_save_path: ''
|
||||
php_disable_functions: []
|
||||
|
||||
Various defaults for PHP. Only used if `php_use_managed_ini` is set to `true`.
|
||||
|
||||
|
@ -61,6 +61,7 @@ php_allow_url_fopen: "On"
|
||||
php_sendmail_path: "/usr/sbin/sendmail -t -i"
|
||||
php_output_buffering: "4096"
|
||||
php_short_open_tag: false
|
||||
php_disable_functions: []
|
||||
|
||||
php_session_cookie_lifetime: 0
|
||||
php_session_gc_probability: 1
|
||||
|
@ -15,7 +15,7 @@ zlib.output_compression = Off
|
||||
implicit_flush = Off
|
||||
unserialize_callback_func =
|
||||
serialize_precision = 17
|
||||
disable_functions =
|
||||
disable_functions = {{ php_disable_functions|join(",") }}
|
||||
disable_classes =
|
||||
|
||||
zend.enable_gc = On
|
||||
|
Loading…
Reference in New Issue
Block a user