Eric Schirra
709591df72
- Update to 21.0.1 - No changelog from upstream at this time. - Switch requires from mysql to mariadb. - Now minimum require php is 7.3 and recommend 7.4. OBS-URL: https://build.opensuse.org/request/show/883894 OBS-URL: https://build.opensuse.org/package/show/server:php:applications/nextcloud?expand=0&rev=146
15 lines
431 B
Plaintext
15 lines
431 B
Plaintext
To speed up nextcloud you should enable PHP OPcache
|
|
|
|
The OPcache improves the performance of PHP applications by caching precompiled bytecode. We recommend at least following settings:
|
|
|
|
Put this in this insert in /etc/php7/apache2/php.ini
|
|
|
|
opcache.enable=On
|
|
opcache.enable_cli=1
|
|
opcache.interned_strings_buffer=8
|
|
opcache.max_accelerated_files=10000
|
|
opcache.memory_consumption=128
|
|
opcache.save_comments=1
|
|
opcache.revalidate_freq=1
|
|
|