fix(chat): correct .well-known URLs (#15)
All checks were successful
buildbot/nix-eval Build done.
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:
parent
a855c71575
commit
8c0f02c3f1
|
@ -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";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue