EscolaLMS/API

View on GitHub
docker/conf/php/xxx-devilbox-default-php.ini

Summary

Maintainability
Test Coverage
; ############################################################
; # Devilbox PHP defaults for 7.4-base
; ############################################################

; Each PHP flavour (base, mods, prod, work) might have its own php.ini.
; If none is present, the one from the previous flavour is inherited.


[PHP]

; Memory
; Note: "memory_limit" should be larger than "post_max_size"
memory_limit              = 2G


; Timeouts
max_execution_time        = 3600
max_input_time            = 3600


; Uploads
; Note: "post_max_size" should be greater than "upload_max_filesize"
post_max_size             = 2G
upload_max_filesize       = 2G
max_file_uploads          = 20


; Vars
variables_order           = EGPCS
max_input_vars            = 8000
max_input_nesting_level   = 64


; Error reporting
; Note: error_log is dynamic and handled during start to set appropriate setting
error_reporting           = E_ALL & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED
xmlrpc_errors             = Off
report_memleaks           = On
display_errors            = On
display_startup_errors    = On
log_errors                = On
html_errors               = On


; Xdebug settings
; uncomment below
; MacOS add host with `sudo ifconfig lo0 alias 10.254.254.254`
;
;[Xdebug]
;xdebug.remote_enable = 1
;xdebug.idekey = VSCODE
;xdebug.remote_host = docker.for.mac.localhost
;xdebug.remote_autostart = 1
;xdebug.remote_connect_back = 1
;xdebug.default_enable  = 1
;xdebug.profiler_enable = 1
;xdebug.mode=debug
;xdebug.client_port=9003
;xdebug.remote_handler=dbgp
;xdebug.start_with_request=trigger
;xdebug.show_error_trace = 1
;xdebug.max_nesting_level=250
;xdebug.var_display_max_depth=10
;xdebug.client_host=10.254.254.254
;xdebug.discover_client_host=1

extension=excimer.so