From fb075d41012023da58e0214bf9069ad7352a235f Mon Sep 17 00:00:00 2001 From: CommanderRedYT Date: Wed, 22 Jan 2025 09:35:45 +0100 Subject: [PATCH] This should help for well-known --- docker/nginx/nginx.conf | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/docker/nginx/nginx.conf b/docker/nginx/nginx.conf index cfbc82c..087a8ed 100644 --- a/docker/nginx/nginx.conf +++ b/docker/nginx/nginx.conf @@ -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; + } }