From 2e1cf44e9cac71f16ca8e2467fabd6a896d32e4c Mon Sep 17 00:00:00 2001 From: szaimen Date: Tue, 7 Dec 2021 17:39:30 +0100 Subject: [PATCH] disable http_challenge and add https:// to the url Signed-off-by: szaimen --- Containers/apache/Caddyfile | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/Containers/apache/Caddyfile b/Containers/apache/Caddyfile index 8dd92a41..aeeb1ba8 100644 --- a/Containers/apache/Caddyfile +++ b/Containers/apache/Caddyfile @@ -6,7 +6,7 @@ } } -{$NC_DOMAIN}:443 { +https://{$NC_DOMAIN}:443 { # Notify Push route /push/* { @@ -50,4 +50,11 @@ header Strict-Transport-Security max-age=31536000; reverse_proxy localhost:80 } + + # TLS options + tls { + issuer acme { + disable_http_challenge + } + } }