From e48ab69940f91f5d3bd7aa37c36808118c343267 Mon Sep 17 00:00:00 2001
From: Jeffrey Phillips Freeman <the@jeffreyfreeman.me>
Date: Mon, 12 Oct 2020 04:59:22 -0400
Subject: [PATCH] Fixed small bug that prevented certs from being obtained.

---
 swarm-proxy/swarm-proxy.tmpl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/swarm-proxy/swarm-proxy.tmpl b/swarm-proxy/swarm-proxy.tmpl
index 14e7bbf..69cb3c2 100644
--- a/swarm-proxy/swarm-proxy.tmpl
+++ b/swarm-proxy/swarm-proxy.tmpl
@@ -7,7 +7,7 @@ server {
     server_name ${HOST};
     listen 80 ;
 
-    location /.well-known/acme-challenge/ {
+    location ^~ /.well-known/acme-challenge/ {
       auth_basic off;
       allow all;
       root /usr/share/nginx/html;
-- 
GitLab