2022-06-19 05:03:51 +02:00

13 lines
281 B
YAML

---
# tasks file for website
- include_tasks: setup-ubuntu.yml
when: ansible_distribution == 'Ubuntu'
# vhost configuration.
- import_tasks: configuration.yml
- name: Ensure nginx service is running as configured.
service:
name: nginx
state: started
enabled: true