From 59619996d436f5688ab5946d820d20642d980df0 Mon Sep 17 00:00:00 2001
From: binary <me@rgoncalves.se>
Date: Sat, 23 Jan 2021 12:33:37 +0100
Subject: Acme challenge has to be in a host description

---
 roles/httpd/templates/httpd.conf.j2   | 5 -----
 roles/website/templates/httpd.conf.j2 | 5 +++++
 2 files changed, 5 insertions(+), 5 deletions(-)

(limited to 'roles')

diff --git a/roles/httpd/templates/httpd.conf.j2 b/roles/httpd/templates/httpd.conf.j2
index 4839cd0..45b46c3 100644
--- a/roles/httpd/templates/httpd.conf.j2
+++ b/roles/httpd/templates/httpd.conf.j2
@@ -12,11 +12,6 @@ types {
 	image/png       png
 }
 
-location "/.well-known/acme-challenge/*" {
-	root "/acme"
-	request strip 2
-}
-
 {% for file in configurations.files %}
 include "{{ file.path }}"
 {% endfor %}
diff --git a/roles/website/templates/httpd.conf.j2 b/roles/website/templates/httpd.conf.j2
index b1ce966..5008c18 100644
--- a/roles/website/templates/httpd.conf.j2
+++ b/roles/website/templates/httpd.conf.j2
@@ -10,6 +10,11 @@ server "{{ global.domain_name }}" {
 		directory auto index
 	}
 
+	location "/.well-known/acme-challenge/*" {
+		root "/acme"
+		request strip 2
+	}
+
 }
 
 server "www.{{ global.domain_name }}" {
-- 
cgit v1.2.3