16 lines
355 B
YAML
16 lines
355 B
YAML
---
|
|
#
|
|
# setup the vhosts for apache based websites
|
|
|
|
|
|
- name: fetch existing vhosts
|
|
fetch: src=/etc/apache2/vhost-available/{{ item }} dest=backups/
|
|
with_items:
|
|
- 00_default_ssl_vhost.conf
|
|
- 00_default_vhost.conf
|
|
- 01_home_vhost.conf
|
|
- 02_test_vhost.conf
|
|
- 04_sql_vhost.conf
|
|
- 05_mail_vhost.conf
|
|
- default_vhost.include
|