From df9367d12fe0ac9c344bf1b8b480cc77efdc2506 Mon Sep 17 00:00:00 2001 From: Katharina Heidenreich Date: Mon, 16 Mar 2026 19:13:50 +0100 Subject: [PATCH] fix endpoints --- data/network.nix | 1 + services/nginx.nix | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/data/network.nix b/data/network.nix index cc021a6..c9b285b 100644 --- a/data/network.nix +++ b/data/network.nix @@ -78,6 +78,7 @@ rec { port = 8448; ssl = true; }]; + endpoints = ["/_matrix/"]; }; domainOverride = "nudelerde.de"; }; diff --git a/services/nginx.nix b/services/nginx.nix index 9fedddb..c55dbf0 100644 --- a/services/nginx.nix +++ b/services/nginx.nix @@ -11,7 +11,7 @@ let locationsData = builtins.listToAttrs (map (endpointName: { name = endpointName; value = { - proxyPass = "http://127.0.0.1:${builtins.toString service.reverse_proxy.port}/"; + proxyPass = "http://127.0.0.1:${builtins.toString service.reverse_proxy.port}"; proxyWebsockets = true; }; }) locationList);