Developer Environment with Vagrant, Docker and Ansible
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.
|
---
|
|
# 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 |