From c3ebf0278166e8db62131550fabe3b671853a283 Mon Sep 17 00:00:00 2001 From: Tunui Franken Date: Mon, 1 Apr 2024 16:42:09 +0200 Subject: [PATCH] Add missing apache2 modules for forgejo --- roles/forgejo/tasks/apache2.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/roles/forgejo/tasks/apache2.yml b/roles/forgejo/tasks/apache2.yml index b4bf867..020bc73 100644 --- a/roles/forgejo/tasks/apache2.yml +++ b/roles/forgejo/tasks/apache2.yml @@ -1,5 +1,5 @@ --- -- name: Enable proxy modules +- name: Enable needed modules become: true community.general.apache2_module: name: "{{ item }}" @@ -7,6 +7,8 @@ with_items: - proxy - proxy_http + - rewrite + - ssl notify: Reload apache2 service - name: Copy vHost conf