21 lines
408 B
INI
21 lines
408 B
INI
|
|
; ---- PHP limits (as requested) ----
|
||
|
|
max_execution_time = 0
|
||
|
|
max_input_time = -1
|
||
|
|
max_input_vars = 3000
|
||
|
|
memory_limit = 512M
|
||
|
|
post_max_size = 32M
|
||
|
|
upload_max_filesize = 16M
|
||
|
|
default_socket_timeout = 120
|
||
|
|
|
||
|
|
; Recommended defaults
|
||
|
|
date.timezone = UTC
|
||
|
|
display_errors = On
|
||
|
|
error_reporting = E_ALL
|
||
|
|
|
||
|
|
; Opcache (safe defaults)
|
||
|
|
opcache.enable=1
|
||
|
|
opcache.enable_cli=1
|
||
|
|
opcache.validate_timestamps=1
|
||
|
|
opcache.revalidate_freq=2
|
||
|
|
|