This should help for well-known

This commit is contained in:
CommanderRedYT
2025-01-22 09:35:45 +01:00
parent 79332670a2
commit fb075d4101

View File

@ -88,4 +88,13 @@ server {
location = /template.php {
deny all;
}
# make .well-known directory accessible
location ~ /.well-known {
allow all;
# serve all files in the .well-known directory
# directly without passing the request to the backend
try_files $uri =404;
}
}