From d5524a6b064dba38fb990a1e2624a6dd5e338623 Mon Sep 17 00:00:00 2001 From: Patrick Toal Date: Sat, 2 Dec 2023 14:20:16 -0500 Subject: [PATCH] Basic NGINX access works on port 80 --- install_nginx.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/install_nginx.yml b/install_nginx.yml index 1df41e2..6f51ce2 100644 --- a/install_nginx.yml +++ b/install_nginx.yml @@ -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