fix/add-matrix-wellknown #52

Merged
b12f merged 2 commits from fix/add-matrix-wellknown into main 2023-11-08 15:33:22 +00:00

View file

@ -6,8 +6,25 @@ let
add_header X-XSS-Protection "1; mode=block";
'';
clientConfig = import ./matrix/element-client-config.nix;
wellKnownClient."m.homeserver".base_url = "https://matrix.test.pub.solar";
wellKnownServer."m.server" = "matrix.test.pub.solar:8448";
wellKnownClient = {
"m.homeserver".base_url = "https://matrix.pub.solar";
"m.identity_server".base_url = "https://matrix.pub.solar";
teutat3s marked this conversation as resolved
Review

This breaks federation for the testing domain that @axeman is working on. Can we have an extra nginx vhost for testing and the current matrix homeserver?

This breaks federation for the testing domain that @axeman is working on. Can we have an extra nginx vhost for testing and the current matrix homeserver?
Review

I don't see this currently actively being worked on, so I'd rather that gets added/changed in a separate Pr so we get this merged

I don't see this currently actively being worked on, so I'd rather that gets added/changed in a separate Pr so we get this merged
Review

Okay then @axeman will have to add this back 👍

Okay then @axeman will have to add this back 👍
"im.vector.riot.e2ee".default = true;
"io.element.e2ee" = {
default = true;
secure_backup_required = false;
secure_backup_setup_methods = [];
};
"m.integrations" = {
managers = [
{
api_url = "https://dimension.pub.solar/api/v1/scalar";
ui_url = "https://dimension.pub.solar/element";
}
];
};
};
wellKnownServer."m.server" = "matrix.pub.solar:8448";
mkWellKnown = data: ''
add_header Content-Type application/json;
add_header Access-Control-Allow-Origin *;
@ -20,15 +37,19 @@ let
in
{
services.nginx.virtualHosts = {
"test.pub.solar" = {
root = "/dev/null";
forceSSL = lib.mkDefault true;
enableACME = lib.mkDefault true;
#####################################
# This is already in production use #
#####################################
"pub.solar" = {
locations = wellKnownLocations;
};
#######################################
# Stuff below is still in betatesting #
#######################################
"chat.test.pub.solar" = {
forceSSL = true;
enableACME = true;