diff options
| author | Ricky Elrod <codeblock@fedoraproject.org> | 2016-05-27 19:01:28 +0000 |
|---|---|---|
| committer | Ricky Elrod <codeblock@fedoraproject.org> | 2016-05-27 19:01:28 +0000 |
| commit | ffcc32ea2500be79cbccdf358ff264fc844b0bd9 (patch) | |
| tree | 73996b8750b415a5c5adb43e752fd10a6f5fa578 | |
| parent | e5ab69b71eb9c95dbf246f6261b67f54ecc18fec (diff) | |
add mod_ssl
Signed-off-by: Ricky Elrod <codeblock@fedoraproject.org>
| -rw-r--r-- | roles/piwik/files/piwik-httpd.conf | 2 | ||||
| -rw-r--r-- | roles/piwik/tasks/main.yml | 5 |
2 files changed, 4 insertions, 3 deletions
diff --git a/roles/piwik/files/piwik-httpd.conf b/roles/piwik/files/piwik-httpd.conf index 11a04ab86..4b55fdc71 100644 --- a/roles/piwik/files/piwik-httpd.conf +++ b/roles/piwik/files/piwik-httpd.conf @@ -20,6 +20,4 @@ SSLCertificateKeyFile /etc/pki/tls/certs/piwik.fedorainfracloud.org.key Alias /piwik /srv/piwik - - Redirect / /piwik </VirtualHost> diff --git a/roles/piwik/tasks/main.yml b/roles/piwik/tasks/main.yml index 4a63570ec..c22d809f9 100644 --- a/roles/piwik/tasks/main.yml +++ b/roles/piwik/tasks/main.yml @@ -1,6 +1,9 @@ --- - name: install piwik package - dnf: state=present name=piwik + dnf: state=present name={{ item }} + with_items: + - piwik + - mod_ssl tags: - packages - piwik |
