HiPoweredAnsible/software/apache.yml

14 lines
234 B
YAML
Raw Permalink Normal View History

- hosts: apache
become: yes
# vars_files:
# - vars/main.yml
# UFW Setup
tasks:
- name: UFW - Allow Apache connections
ufw:
rule: allow
name: 'Apache Full'
roles:
- { role: geerlingguy.apache }