mirror of
https://github.com/cytopia/devilbox.git
synced 2024-12-19 12:57:52 +00:00
64 lines
1.5 KiB
INI
64 lines
1.5 KiB
INI
; ############################################################
|
|
; # Devilbox php.ini: Current default settings
|
|
; ############################################################
|
|
;
|
|
; Information
|
|
; -----------
|
|
; * Do not edit this file (it belongs to git)
|
|
; * This file shows example settings that are currently effective
|
|
; * If this file is enabled, nothing will change as it reflects the current default settings
|
|
;
|
|
; How to enable?
|
|
; --------------
|
|
; * Copy this file to another file with ".ini" extension
|
|
; * Only files with ".ini" extensions will be applied by PHP
|
|
|
|
|
|
|
|
;
|
|
; PHP.ini configuration
|
|
;
|
|
[PHP]
|
|
|
|
; Memory
|
|
; Note: "memory_limit" should be larger than "post_max_size"
|
|
memory_limit = 512M
|
|
|
|
|
|
; Timeouts
|
|
max_execution_time = 120
|
|
max_input_time = 120
|
|
|
|
|
|
; Uploads
|
|
; Note: "post_max_size" should be greater than "upload_max_filesize"
|
|
post_max_size = 72M
|
|
upload_max_filesize = 64M
|
|
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
|
|
xdebug.default_enable = Off
|
|
xdebug.profiler_enable = Off
|
|
xdebug.remote_enable = Off
|
|
xdebug.remote_autostart = Off
|
|
|
|
; vim: set ft=dosini:
|