alter order with apache modules
This commit is contained in:
parent
0f8b386fba
commit
8c86f890b7
1 changed files with 8 additions and 8 deletions
|
@ -9,6 +9,14 @@
|
|||
rule: allow
|
||||
port: 443
|
||||
|
||||
- name: Disable MPM Apache2 modules
|
||||
community.general.apache2_module:
|
||||
state: absent
|
||||
name: "{{ item }}"
|
||||
loop:
|
||||
- mpm_worker
|
||||
- mpm_event
|
||||
|
||||
- name: Enable Apache2 modules
|
||||
community.general.apache2_module:
|
||||
state: present
|
||||
|
@ -18,14 +26,6 @@
|
|||
- ssl
|
||||
- mpm_prefork
|
||||
|
||||
- name: Disable MPM Apache2 modules
|
||||
community.general.apache2_module:
|
||||
state: absent
|
||||
name: "{{ item }}"
|
||||
loop:
|
||||
- mpm_worker
|
||||
- mpm_event
|
||||
|
||||
- name: Stop Apache
|
||||
service:
|
||||
name: apache2
|
||||
|
|
Loading…
Reference in a new issue