commit 348c208e7fdf69f51b52fc2f8bf9890b5bf7e355
parent 416c7d115345f3b984582430f452c60f1211cabd
Author: MTRNord <MTRNord@users.noreply.github.com>
Date: Thu, 11 Sep 2025 11:59:46 +0200
Small fixes
Diffstat:
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/apps/talos_cluster/wkd/deployment.yaml b/apps/talos_cluster/wkd/deployment.yaml
@@ -112,13 +112,18 @@ data:
add_header Content-Type text/plain;
}
+ # Tell synapse to not look for a matrix server here
+ location /.well-known/matrix/server {
+ return 404;
+ }
+
# Health check endpoint
location /health {
access_log off;
return 200 "healthy\n";
add_header Content-Type text/plain;
}
-
+
# Disable server tokens
server_tokens off;
}