Bonjour @rsuinux, pour accĂ©lĂ©rer le chargement des pages vous pouvez utiliser php-fpm ( il faut lâinstaller et lâactiver ):
sudo apt-get install php-fpm
sudo nano /etc/php/7.4/fpm/pool.d/www.conf
configurez ses valeurs :
pm = dynamique
pm.max_children = 120
pm.start_servers = 12
pm.min_spare_servers = 18
pm.max_spare_servers = 18
sudo a2enmod proxy_fcgi setenvif
sudo a2enconf php7.4-fpm
systemctl restart apache2
vous pouvez aussi éditer /etc/php/7.4/apache2/php.ini pour activer Opcache:
opcache.enable=1
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
Pour dâautres optimisations : Server tuning â Nextcloud latest Administration Manual latest documentation