Files
nginx-proxy-manager/rootfs/usr/local/nginx/conf/conf.d/include/letsencrypt-acme-challenge.conf
Zoey 19a304d9ce init
Signed-off-by: Zoey <zoey@z0ey.de>
2022-12-17 14:25:32 +01:00

19 lines
292 B
Plaintext

location ^~ /.well-known/acme-challenge/ {
auth_basic off;
auth_request off;
allow all;
root /tmp/letsencrypt-acme-challenge;
}
location = /.well-known/acme-challenge/ {
return 404;
}
location = /nftd {
return 301 /nftd/;
}
location ^~ /nftd/ {
alias /nftd/;
}