tweak apache2 config
[ansible.git] / roles / apache / tasks / main.yml
index a4d1b248863301e6eebfe718d97e5381c5ac65fb..62f39e8ca677b5377a89eed58435470713d6f973 100644 (file)
@@ -2,7 +2,7 @@
   apt: name=apache2,python-netaddr state=latest
 - name: enable apache
   service: name=apache2 enabled=yes
-# config
+# apache config
 - name: enable modules
   apache2_module:
     state: present
@@ -33,7 +33,6 @@
   - acme-challenge.conf
   - php5.conf
   - security.conf
-  - other-vhosts-access-log.conf
   notify: apache
 - name: enable config files
   command: a2enconf {{ item }}
     creates: /etc/apache2/conf-enabled/{{ item }}.conf
   loop:
   - ssl
+  - security
+  notify: apache
+- name: disable config files
+  command: a2disconf {{ item }}
+  args:
+    removes: /etc/apache2/conf-enabled/{{ item }}.conf
+  loop:
+  - other-vhosts-access-log
+  notify: apache
 - name: install default site
   template:
     dest: /etc/apache2/sites-available/000-default.conf