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);