From 4b2c0115db50a2631025e79cc1b09d155e0fa655 Mon Sep 17 00:00:00 2001 From: demize Date: Sat, 10 Jul 2021 15:02:09 -0400 Subject: [PATCH] Add to letsencrypt-acme-challenge.conf to allow for ACME challenges on proxy hosts using auth_requests --- .../etc/nginx/conf.d/include/letsencrypt-acme-challenge.conf | 1 + 1 file changed, 1 insertion(+) diff --git a/docker/rootfs/etc/nginx/conf.d/include/letsencrypt-acme-challenge.conf b/docker/rootfs/etc/nginx/conf.d/include/letsencrypt-acme-challenge.conf index d04f7033..ff2a7827 100644 --- a/docker/rootfs/etc/nginx/conf.d/include/letsencrypt-acme-challenge.conf +++ b/docker/rootfs/etc/nginx/conf.d/include/letsencrypt-acme-challenge.conf @@ -5,6 +5,7 @@ location ^~ /.well-known/acme-challenge/ { # Since this is for letsencrypt authentication of a domain and they do not give IP ranges of their infrastructure # we need to open up access by turning off auth and IP ACL for this location. auth_basic off; + auth_request off; allow all; # Set correct content type. According to this: