From 1c5f884a1e7b16b8c6e6481d772d074df6c11379 Mon Sep 17 00:00:00 2001 From: Corbin Bartsch Date: Mon, 11 Apr 2022 18:15:40 -0400 Subject: [PATCH] Fixed typo in apache2_modules --- tasks/apache2_modules.yaml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/tasks/apache2_modules.yaml b/tasks/apache2_modules.yaml index 524fe44..ce45782 100644 --- a/tasks/apache2_modules.yaml +++ b/tasks/apache2_modules.yaml @@ -1,7 +1,7 @@ --- - name: Enable Apache2 modules community.general.apache2_module: - name: rewrite + name: "{{ item }}" state: present with_items: - alias @@ -13,3 +13,9 @@ - mime notify: - Restart Apache + +- name: Enable Apache2 module SSL + community.general.apache2_module: + name: ssl + state: present + when: nextcloud_ssl