From 08813acac8bb5b10ace9fcd8b2db9fe53795bdbd Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Mon, 25 May 2020 11:14:57 +0200 Subject: [PATCH] fix path --- tasks/install.yml | 2 +- templates/usr/{ => share/nginx/html}/error.html.j2 | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename templates/usr/{ => share/nginx/html}/error.html.j2 (100%) diff --git a/tasks/install.yml b/tasks/install.yml index c62a838..6a75385 100644 --- a/tasks/install.yml +++ b/tasks/install.yml @@ -79,7 +79,7 @@ - name: Add custom error page template template: src: usr/share/nginx/html/error.html.j2 - dest: usr/share/nginx/html/error.html + dest: /usr/share/nginx/html/error.html owner: root group: root mode: 0644 diff --git a/templates/usr/error.html.j2 b/templates/usr/share/nginx/html/error.html.j2 similarity index 100% rename from templates/usr/error.html.j2 rename to templates/usr/share/nginx/html/error.html.j2