Files
nginx-proxy-manager/rootfs/usr/local/nginx/conf/conf.d/include/acme-challenge.conf
Zoey d7db5527d9 changes on ssl
Signed-off-by: Zoey <zoey@z0ey.de>
2022-12-31 21:24:54 +01:00

19 lines
280 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/;
}