; ############################################################ ; # Devilbox php.ini: Blackfire example ; ############################################################ ; ; Information ; ----------- ; * Do not edit this file (it belongs to git) ; * This file show a possible Xdebug example configuration ; * If this file is enabled, it will overwrite the current Xdebug settings ; ; How to enable? ; -------------- ; * Copy this file to another file with ".ini" extension ; * Only files with ".ini" extensions will be applied by PHP ; ; IMPORTANT ; --------- ; * Ensure that blackfire is enabled in .env via: PHP_MODULES_ENABLE=blackfire ; * Ensure that Xdebug is disabled in .env via: PHP_MODULES_DISABLE=xdebug ; ; blackfire.ini configuration ; [blackfire] ; Sets the socket where the agent is listening. ; Possible value can be a unix socket or a TCP address. ; Defaults to unix:///var/run/blackfire/agent.sock on Linux, ; unix:///usr/local/var/run/blackfire-agent.sock on MacOSX, ; and to tcp://127.0.0.1:8307 on Windows. blackfire.agent_socket = tcp://blackfire:8707 blackfire.agent_timeout = 0.25 ; Log verbosity level (4: debug, 3: info, 2: warning, 1: error) blackfire.log_level = 4 ; Log file (STDERR by default) blackfire.log_file = /var/log/php/blackfire.log ; Sets fine-grained configuration for Probe. ; This should be left blank in most cases. For most installs, ; the server credentials should only be set in the agent. ;blackfire.server_id = ; Sets fine-grained configuration for Probe. ; This should be left blank in most cases. For most installs, ; the server credentials should only be set in the agent. ;blackfire.server_token = ; vim: set ft=dosini: