diff options
| author | 2022-02-16 21:42:22 +0100 | |
|---|---|---|
| committer | 2022-02-20 16:37:46 +0100 | |
| commit | 01393ae1041335d3ebea78cb7ded1036bc277a29 (patch) | |
| tree | 6bc04409197212412efc30eaa3709eea1e206f39 /roles/nginx-ufw/tasks | |
| parent | Delete projects_automation.yml (diff) | |
Add nginx deployment
Includes documented roles for:
- installing nginx & configuring handlers
- installing the mTLS certificate for Cloudflare
- installing firewall rules
They are kept separate for now, for composability.
Closes #22.
Diffstat (limited to 'roles/nginx-ufw/tasks')
| -rw-r--r-- | roles/nginx-ufw/tasks/main.yml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/roles/nginx-ufw/tasks/main.yml b/roles/nginx-ufw/tasks/main.yml new file mode 100644 index 0000000..bea22aa --- /dev/null +++ b/roles/nginx-ufw/tasks/main.yml @@ -0,0 +1,8 @@ +--- +- name: allow https traffic through the firewall + ufw: + app: WWW Secure + rule: allow + comment: nginx web server + tags: + - role::nginx-ufw |