mirror of
https://github.com/ruanbekker/dev-environment-vagrant.git
synced 2025-07-12 10:01:31 +02:00
13 lines
281 B
YAML
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 |