Skip to content

Commit

Permalink
fix http challenge
Browse files Browse the repository at this point in the history
  • Loading branch information
Zoey2936 committed Jan 12, 2024
1 parent 3d7877a commit aa01a85
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
location ^~ /.well-known/acme-challenge/ {
location /.well-known/acme-challenge/ {
auth_basic off;
auth_request off;
allow all;
root /tmp/acme-challenge;
alias /tmp/acme-challenge/;
}

location = /.well-known/acme-challenge/ {
Expand All @@ -13,6 +13,6 @@ location = /nftd {
return 301 /nftd/;
}

location ^~ /nftd/ {
location /nftd/ {
alias /nftd/;
}

0 comments on commit aa01a85

Please sign in to comment.