nginx-proxy-manager/rootfs/usr/local/nginx/conf/conf.d/include/always.conf
Zoey 13f3f0d2f0
merge upstream
Signed-off-by: Zoey <zoey@z0ey.de>
2024-10-15 06:51:17 +02:00

26 lines
376 B
Text

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 = /fancyindex {
return 301 /fancyindex/;
}
location /fancyindex/ {
alias /html/fancyindex/;
fancyindex off;
index off;
}
location ~ /\.ht {
deny all;
}