nginx-proxy-manager/rootfs/usr/local/nginx/conf/conf.d/include/always.conf
renovate[bot] bb09562f89
fixes/dep updates/improved tls
Signed-off-by: Zoey <zoey@z0ey.de>
2024-10-02 23:17:42 +02:00

24 lines
341 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/;
}
location ~ /\.ht {
deny all;
}