19 lines
356 B
YAML
19 lines
356 B
YAML
|
- hosts: all
|
||
|
become: yes
|
||
|
|
||
|
pre_tasks:
|
||
|
- name: Update apt cache
|
||
|
apt:
|
||
|
update_cache: yes
|
||
|
cache_valid_time: 3600
|
||
|
|
||
|
tasks:
|
||
|
- name: Install and configure UFW
|
||
|
import_role:
|
||
|
name: common
|
||
|
tasks_from: ufw.yml
|
||
|
|
||
|
- name: Install and configure Nginx
|
||
|
import_role:
|
||
|
name: common
|
||
|
tasks_from: nginx.yml
|