diff options
author | 2022-03-14 23:53:52 +0000 | |
---|---|---|
committer | 2022-03-15 00:19:59 +0000 | |
commit | 35ae4aa2d52cb14c1050463c7b081e34c6c9e574 (patch) | |
tree | fdd3ec39b67d96061fd7bc4d7dac1a7cabed6d21 | |
parent | Update extra SAN (diff) |
Allow HTTP traffic through the firewall
Allow HTTP traffic in addition to HTTPS by switching to the "Nginx Full" ruleset
-rw-r--r-- | roles/nginx-ufw/tasks/main.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/roles/nginx-ufw/tasks/main.yml b/roles/nginx-ufw/tasks/main.yml index bd9408f..4337cc1 100644 --- a/roles/nginx-ufw/tasks/main.yml +++ b/roles/nginx-ufw/tasks/main.yml @@ -1,7 +1,7 @@ --- -- name: allow https traffic through the firewall +- name: allow http(s) traffic through the firewall ufw: - app: Nginx HTTPS + app: Nginx Full rule: allow tags: - role::nginx-ufw |