readme.txt 399 B

1234567891011121314151617181920212223
  1. a2dismod php7.4
  2. a2dismod mpm_prefork
  3. a2enmod mpm_event
  4. apt install php-fpm libapache2-mod-fcgid
  5. a2enconf php7.4-fpm
  6. a2enmod proxy
  7. apachectl configtest
  8. systemctl enable php7.4-fpm.service
  9. systemctl restart php7.4-fpm.service
  10. systemctl restart apache2
  11. #test
  12. # apachectl -M | grep 'mpm'
  13. mpm_event_module (shared)
  14. # apachectl -M | grep 'proxy'
  15. proxy_module (shared)
  16. proxy_fcgi_module (shared)