Rewrote apache2_modules tasks

This commit is contained in:
Corbin Bartsch 2022-04-10 17:33:13 -04:00
parent 0046605cfd
commit 27489db848
Signed by: coredotbin
GPG Key ID: 32D3B80A08D93212

View File

@ -1,35 +1,13 @@
---
- name: Enable mod_rewrite
- name: Enable Apache2 modules
community.general.apache2_module:
name: rewrite
state: present
notify:
- Restart Apache
- name: Enable mod_headers
community.general.apache2_module:
name: headers
state: present
notify:
- Restart Apache
- name: Enable mod_env
community.general.apache2_module:
name: env
state: present
notify:
- Restart Apache
- name: Enable mod_dir
community.general.apache2_module:
name: dir
state: present
notify:
- Restart Apache
- name: Enable mod_mime
community.general.apache2_module:
name: mime
state: present
with_items:
- rewrite
- headers
- env
- dir
- mime
notify:
- Restart Apache