Basic NGINX access works on port 80

This commit is contained in:
2023-12-02 14:20:16 -05:00
parent 8cfea3c672
commit d5524a6b06

View File

@@ -11,3 +11,10 @@
- name: Nginx Configured to serve Front-end Application
ansible.builtin.include_role:
name: nginxinc.nginx_core.nginx_config
- name: Ensure firewall is open on port 80
ansible.posix.firewalld:
port: 80/tcp
permanent: true
immediate: true
state: enabled