From 8c0f02c3f17affc783dd0feff6dc04d67a6fb1a0 Mon Sep 17 00:00:00 2001 From: Skyler Grey Date: Mon, 26 Aug 2024 00:30:04 +0000 Subject: [PATCH] fix(chat): correct .well-known URLs (#15) By default, conduit assumes your .well-known URLs are the same as your base URL (for us auxolotl.org). Unfortunately, although we want our accounts to be @foo:auxolotl.org, our server is actually at matrix.auxolotl.org, which broke some clients such as commet Correcting these .well-known URLs allows clients to connect again Reviewed-on: https://git.auxolotl.org/auxolotl/infra/pulls/15 Co-authored-by: Skyler Grey Co-committed-by: Skyler Grey --- modules/nixos/auxolotl/services/chat/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modules/nixos/auxolotl/services/chat/default.nix b/modules/nixos/auxolotl/services/chat/default.nix index e592fc5..6478601 100644 --- a/modules/nixos/auxolotl/services/chat/default.nix +++ b/modules/nixos/auxolotl/services/chat/default.nix @@ -77,6 +77,10 @@ in { global = { server_name = cfg.domain; allow_registration = false; + well_known = { + server = "matrix.auxolotl.org:443"; + client = "https://matrix.auxolotl.org"; + }; }; }; };