diff options
Diffstat (limited to 'roles/awstats_vhost/tasks')
-rw-r--r-- | roles/awstats_vhost/tasks/main.yml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/roles/awstats_vhost/tasks/main.yml b/roles/awstats_vhost/tasks/main.yml new file mode 100644 index 0000000..90d0691 --- /dev/null +++ b/roles/awstats_vhost/tasks/main.yml @@ -0,0 +1,18 @@ +--- +- name: Deploy custom config for awstats + template: + dest: "/etc/httpd/conf.d/{{ _website_domain }}.conf.d/awstats.conf" + src: awstats.conf + notify: verify config and restart httpd + +- package: + name: python-passlib + state: present + +- htpasswd: + path: /etc/httpd/htpasswd + name: "guest" + password: "{{ awstats_guest_password }}" + owner: root + group: apache + mode: 0640 |