Skip to content
Snippets Groups Projects
Commit 4b2c0115 authored by demize's avatar demize
Browse files

Add to letsencrypt-acme-challenge.conf to allow for ACME challenges on proxy...

Add  to letsencrypt-acme-challenge.conf to allow for ACME challenges on proxy hosts using auth_requests
parent 842cff13
No related branches found
No related tags found
No related merge requests found
...@@ -5,6 +5,7 @@ location ^~ /.well-known/acme-challenge/ { ...@@ -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 # 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. # we need to open up access by turning off auth and IP ACL for this location.
auth_basic off; auth_basic off;
auth_request off;
allow all; allow all;
# Set correct content type. According to this: # Set correct content type. According to this:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment