17 lines
466 B
INI
17 lines
466 B
INI
; This is a subset of the php.ini-production template file: https://github.com/php/php-src/blob/master/php.ini-production
|
|
; Extend as needed
|
|
|
|
; upload settings
|
|
file_uploads = On
|
|
upload_max_filesize = 256M
|
|
post_max_size = 256M
|
|
log_errors = On
|
|
error_log = /dev/stderr
|
|
|
|
; opcache, configured according to https://docs.moodle.org/501/en/OPcache
|
|
opcache.enable = 1
|
|
opcache.revalidate_freq = 60
|
|
opcache.enable_cli = 1
|
|
|
|
zend.exception_ignore_args = On
|
|
max_input_vars = 5000 |