- name: Apache local_dev.conf vhost available
  template: src=./files/vhost/template.local_dev.conf.j2 dest=/etc/apache2/sites-available/localdev.conf mode=0640
  notify:
    - apache-restart
  tags:
    - vhost

- name: Apache vapi vhost available
  template: src=./files/vhost/vapi_local.conf.j2 dest=/etc/apache2/sites-available/vapi.conf mode=0640
  notify:
    - apache-restart
  tags:
    - vhost
 
- name: Enable required apache vhost
  command: a2ensite localdev.conf
  notify:
    - apache-restart
  tags:
    - vhost

- name: Enable required apache vhost
  command: a2ensite vapi.conf
  notify:
    - apache-restart
  tags:
    - vhost
- name: create /var/www/ directory
  file: dest=/var/www/ state=directory 
