From b085c2e2b289e445e0d86d8be2ac952b1937c630 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20B=C3=A4dorf?= Date: Tue, 7 Nov 2023 15:19:55 +0100 Subject: [PATCH] feat: add all matrix well-known data to nginx --- hosts/nachtigall/apps/nginx-matrix.nix | 28 +++++++++++++++++++++++++- 1 file changed, 27 insertions(+), 1 deletion(-) diff --git a/hosts/nachtigall/apps/nginx-matrix.nix b/hosts/nachtigall/apps/nginx-matrix.nix index 50b0bf1..cc6ea01 100644 --- a/hosts/nachtigall/apps/nginx-matrix.nix +++ b/hosts/nachtigall/apps/nginx-matrix.nix @@ -6,7 +6,24 @@ let add_header X-XSS-Protection "1; mode=block"; ''; clientConfig = import ./matrix/element-client-config.nix; - wellKnownClient."m.homeserver".base_url = "https://matrix.pub.solar"; + wellKnownClient = { + "m.homeserver".base_url = "https://matrix.pub.solar"; + "m.identity_server".base_url = "https://matrix.pub.solar"; + "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; @@ -20,10 +37,19 @@ let in { services.nginx.virtualHosts = { + + ##################################### + # This is already in production use # + ##################################### + "pub.solar" = { locations = wellKnownLocations; }; + ####################################### + # Stuff below is still in betatesting # + ####################################### + "chat.test.pub.solar" = { forceSSL = true; enableACME = true;