self-hosting/roles/apache-install/tasks/main.yml

20 lines
356 B
YAML

---
- name: Install apache
become: true
apt:
name: apache2
state: present
update_cache: yes
notify: Restart apache2 service
- name: Remove default html dir
become: true
file:
path: /var/www/html
state: absent
- name: Create /var/www/empty for *:80 vHosts
become: true
file:
path: /var/www/empty
state: directory