From 6d8fc6b0d76f3dddabeba61365e6036dd869a917 Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Wed, 14 Feb 2018 17:21:11 +0200 Subject: Change: optionally install a per-site htpasswd file Also, configure the Apache vhost to use the file if installed. --- roles/apache_server/tasks/main.yml | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) (limited to 'roles/apache_server/tasks/main.yml') diff --git a/roles/apache_server/tasks/main.yml b/roles/apache_server/tasks/main.yml index 8a14b35..0f59f67 100644 --- a/roles/apache_server/tasks/main.yml +++ b/roles/apache_server/tasks/main.yml @@ -1,5 +1,6 @@ - name: install rsync (so one can publish files via server) - apt: name=rsync + apt: + name: rsync - name: install apache2 apt: name=apache2 @@ -31,6 +32,16 @@ mode: 0644 with_items: "{{ static_sites }}" +- name: "install htpasswd files" + copy: + content: "{{ item.htpasswd }}" + dest: "/srv/http/{{ item.domain }}.htpasswd" + owner: root + group: root + mode: 0644 + with_items: "{{ static_sites }}" + when: item.htpasswd is defined + - name: enable apache sites shell: a2ensite "{{ item.domain }}" with_items: "{{ static_sites }}" -- cgit v1.2.1