From 2c85ac4bbd41a3ab86f83bea62efcc5e9b8fbb53 Mon Sep 17 00:00:00 2001 From: Matthieu Rakotojaona Date: Wed, 21 Jun 2023 11:04:07 +0200 Subject: [PATCH] server_name.conf: remove trailing comma The JSON is invalid and breaks with clients that use this (example: NeoChat) --- conf/server_name.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conf/server_name.conf b/conf/server_name.conf index e03481c..8396b50 100644 --- a/conf/server_name.conf +++ b/conf/server_name.conf @@ -6,7 +6,7 @@ location /.well-known/matrix/server { location /.well-known/matrix/client { return 200 '{ - "m.homeserver": { "base_url": "https://__DOMAIN__" }, + "m.homeserver": { "base_url": "https://__DOMAIN__" } }'; add_header Content-Type application/json; add_header Access-Control-Allow-Origin '*';