From 3e6830369c6ae6a2f2fbbb75b1a3ac8a52b6414c Mon Sep 17 00:00:00 2001 From: xengi Date: Fri, 5 Dec 2025 22:11:27 +0100 Subject: [PATCH] Update README.md Signed-off-by: xengi --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e608ad8..1169c52 100644 --- a/README.md +++ b/README.md @@ -11,12 +11,12 @@ Configure `berlin.ccc.de` web server to send federation traffic to the matrix se ```nginx server { hostname berlin.ccc.de; - location "/.well-known/matrix/server" { + location = /.well-known/matrix/server { default_type application/json; add_header Access-Control-Allow-Origin "*"; return 200 '{"m.server":"matrix.berlin.ccc.de:443"}'; } - location "/.well-known/matrix/client" { + location = /.well-known/matrix/client { default_type application/json; add_header Access-Control-Allow-Origin "*"; return 200 '{"m.homeserver": {"base_url": "https://matrix.berlin.ccc.de"}}';