Merge pull request #153 from stevenspasbo/master

Added php option for disable_functions
This commit is contained in:
Jeff Geerling 2016-11-02 15:28:02 -05:00 committed by GitHub
commit e863c348c3
3 changed files with 3 additions and 1 deletions

View File

@ -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`.

View File

@ -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

View File

@ -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