mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2025-08-02 15:33:32 +00:00
19 lines
274 B
Plaintext
19 lines
274 B
Plaintext
location /.well-known/acme-challenge/ {
|
|
auth_basic off;
|
|
auth_request off;
|
|
allow all;
|
|
root /tmp/acme-challenge;
|
|
}
|
|
|
|
location = /.well-known/acme-challenge/ {
|
|
return 404;
|
|
}
|
|
|
|
location = /nftd {
|
|
return 301 /nftd/;
|
|
}
|
|
|
|
location /nftd/ {
|
|
alias /nftd/;
|
|
}
|