aboutsummaryrefslogtreecommitdiff
path: root/ansible/roles/apache-conf/tasks/main.yml
diff options
context:
space:
mode:
Diffstat (limited to 'ansible/roles/apache-conf/tasks/main.yml')
-rw-r--r--ansible/roles/apache-conf/tasks/main.yml22
1 files changed, 0 insertions, 22 deletions
diff --git a/ansible/roles/apache-conf/tasks/main.yml b/ansible/roles/apache-conf/tasks/main.yml
deleted file mode 100644
index bcd3c42..0000000
--- a/ansible/roles/apache-conf/tasks/main.yml
+++ /dev/null
@@ -1,22 +0,0 @@
----
-# Disable defaults and enable necessary modules.
-
-- name: Enable Apache modules
- command: a2enmod {{ item }}
- creates=/etc/apache2/mods-enabled/{{ item }}.load
- with_items:
- - ssl
- - wsgi
- - xsendfile
- notify: restart-apache
- tags:
- - install
- - apache-conf
-
-- name: Disable Aapche default website
- command: a2dissite default
- removes=/etc/apache2/sites-enabled/000-default
- notify: restart-apache
- tags:
- - install
- - apache-conf