nextcloud/webservice/nextcloud_php.ini
bsod 73c6503499 update php.ini: increase limits to match recommendations
increase interned_strings_buffer as notified by the admin panel and
increase the apc cache revalidation time as revalidating the php files
isn't required that often (see https://docs.nextcloud.com/server/24/admin_manual/installation/server_tuning.html#enable-php-opcache)
2022-09-03 16:35:30 +02:00

17 lines
325 B
INI

opcache.enable=1
opcache.enable_cli=1
opcache.interned_strings_buffer=16
opcache.max_accelerated_files=10000
opcache.memory_consumption=128
opcache.save_comments=1
opcache.revalidate_freq=60
memory_limit = 1G
apc.enable_cli=1
apc.enable=1
upload_max_filesize=1G
post_max_size=1G
max_execution_time=3600
max_input_time=3600