Installazione e configurazione di PHP Opcache su Ubuntu 20.04 Per Apache e Nginx
Il seguente tutorial descrive come installare PHP Opcache su Ubuntu 20.04 Sia per Apache che per Nginx.
Made in secondi.
Per i sistemi Apache
Avviamo il terminale e installiamo Opcache:
1 | apt-get install php-opcache -y |
Modificare il file php.ini
1 | nano /etc/php/7.4/apache2/php.ini |
e aggiungi alla fine:
1 2 3 4 | opcache.enable=1 opcache.memory_consumption=128 opcache.max_accelerated_files=3000 opcache.revalidate_freq=200 |
Riavviamo il server Apache:
1 | systemctl restart apache2 |
Nel caso di Nginx la procedura è molto simile:
installazione:
1 | apt-get install php-opcache php-fpm -y |
Modificare il file php.ini
1 | nano /etc/php/7.4/fpm/php.ini |
Aggiungiamo alla fine del file:
1 2 3 4 | opcache.enable=1 opcache.memory_consumption=128 opcache.max_accelerated_files=3000 opcache.revalidate_freq=200 |
E sovraccarichiamo i servizi
1 | systemctl restart nginx |
1 | systemctl restart php7.4-fpm |