fix(chat): correct .well-known URLs
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
This commit is contained in:
Skyler Grey 2024-08-26 00:08:27 +00:00
parent a855c71575
commit e456cab7f4

View file

@ -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";
};
};
};
};