Update apache.yml to allow http traffic (#65)

This commit is contained in:
Sean Cavanaugh
2023-05-15 16:16:48 -04:00
committed by GitHub
parent 2085e6f15d
commit 28ba1fb5ab

View File

@@ -1,7 +1,14 @@
---
- name: Inlcude system variables
- name: Include system variables
ansible.builtin.include_vars: "{{ ansible_system }}.yml"
- name: Permit traffic in default zone for http service
ansible.posix.firewalld:
service: http
permanent: true
state: enabled
check_mode: false
- name: Install httpd package
ansible.builtin.yum:
name: httpd