You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
281 B
13 lines
281 B
2 years ago
|
---
|
||
|
# 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
|