24 lines
530 B
INI
24 lines
530 B
INI
; PHP Custom Configuration for Production
|
|
|
|
upload_max_filesize = 100M
|
|
post_max_size = 100M
|
|
memory_limit = 512M
|
|
max_execution_time = 300
|
|
max_input_time = 300
|
|
|
|
; OPcache settings
|
|
opcache.enable = 1
|
|
opcache.memory_consumption = 256
|
|
opcache.interned_strings_buffer = 16
|
|
opcache.max_accelerated_files = 20000
|
|
opcache.validate_timestamps = 0
|
|
opcache.save_comments = 1
|
|
opcache.fast_shutdown = 1
|
|
|
|
; Production settings
|
|
expose_php = Off
|
|
display_errors = Off
|
|
display_startup_errors = Off
|
|
log_errors = On
|
|
error_log = /var/log/php_errors.log
|