From a29b27ee77befa303519c0da7d12cc0b771aed1f Mon Sep 17 00:00:00 2001 From: "Antonio J. Delgado" Date: Sat, 11 Feb 2023 14:58:39 +0200 Subject: [PATCH] change back to prefork --- tasks/configure.yml | 8 ++++---- tasks/install.yml | 2 -- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/tasks/configure.yml b/tasks/configure.yml index 9614ea9..c697b8c 100644 --- a/tasks/configure.yml +++ b/tasks/configure.yml @@ -12,11 +12,11 @@ - name: Ensure MPM Worker module is disabled shell: a2dismod mpm_worker -- name: Ensure MPM Pre-fork module is disabled - shell: a2dismod mpm_prefork +- name: Ensure MPM Event module is disabled + shell: a2dismod mpm_event -- name: Ensure MPM Event module is enabled - shell: a2enmod mpm_event +- name: Ensure MPM Pre-Fork module is enabled + shell: a2enmod mpm_prefork - name: Enable Apache2 modules community.general.apache2_module: diff --git a/tasks/install.yml b/tasks/install.yml index 3705820..5a48c43 100644 --- a/tasks/install.yml +++ b/tasks/install.yml @@ -3,6 +3,4 @@ apt: name: - apache2 - - php-fpm - - libapache2-mod-fcgid state: latest