From 1749a00e25c29ba9a47488a3c62ae5417f2021d8 Mon Sep 17 00:00:00 2001 From: Olivier Navas Date: Wed, 23 Oct 2024 22:24:59 +0200 Subject: [PATCH] =?UTF-8?q?Variabilisation=20des=20certificats=20suppl?= =?UTF-8?q?=C3=A9mentaires?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tasks/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tasks/main.yml b/tasks/main.yml index b5bd7b6..1640fdf 100644 --- a/tasks/main.yml +++ b/tasks/main.yml @@ -200,7 +200,7 @@ mode: u=rw,g=r,o=r owner: root group: root - with_items: {{ reverse_proxy_additional_certificates }} + with_items: "{{ reverse_proxy_additional_certificates }}" notify: - restart apache2 @@ -213,7 +213,7 @@ mode: u=rw,g=r,o= owner: root group: root - with_items: {{ reverse_proxy_additional_certificates }} + with_items: "{{ reverse_proxy_additional_certificates }}" notify: - restart apache2 @@ -221,7 +221,7 @@ template: src: "cert_template.conf" dest: /etc/apache2/certs-conf/cert_{{ item.name }}.conf - with_items: {{ reverse_proxy_additional_certificates }} + with_items: "{{ reverse_proxy_additional_certificates }}" notify: - restart apache2