23 lines
420 B
INI
23 lines
420 B
INI
|
|
; Performance
|
||
|
|
opcache.enable=1
|
||
|
|
opcache.memory_consumption=128
|
||
|
|
opcache.max_accelerated_files=10000
|
||
|
|
opcache.revalidate_freq=60
|
||
|
|
|
||
|
|
; Security
|
||
|
|
expose_php = Off
|
||
|
|
display_errors = Off
|
||
|
|
log_errors = On
|
||
|
|
error_log = /var/log/php_errors.log
|
||
|
|
|
||
|
|
; Limits
|
||
|
|
upload_max_filesize = 32M
|
||
|
|
post_max_size = 32M
|
||
|
|
max_execution_time = 60
|
||
|
|
memory_limit = 256M
|
||
|
|
|
||
|
|
; Session
|
||
|
|
session.cookie_httponly = 1
|
||
|
|
session.cookie_secure = 1
|
||
|
|
session.use_strict_mode = 1
|