fix(chat): correct .well-known URLs (#15)
All checks were successful
buildbot/nix-eval Build done.

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: #15
Co-authored-by: Skyler Grey <sky@a.starrysky.fyi>
Co-committed-by: Skyler Grey <sky@a.starrysky.fyi>
This commit is contained in:
Skyler Grey 2024-08-26 00:30:04 +00:00 committed by Skyler Grey
parent a855c71575
commit 8c0f02c3f1

View file

@ -77,6 +77,10 @@ in {
global = { global = {
server_name = cfg.domain; server_name = cfg.domain;
allow_registration = false; allow_registration = false;
well_known = {
server = "matrix.auxolotl.org:443";
client = "https://matrix.auxolotl.org";
};
}; };
}; };
}; };