diff options
author | sinanmohd <sinan@sinanmohd.com> | 2025-01-05 18:39:44 +0530 |
---|---|---|
committer | sinanmohd <sinan@sinanmohd.com> | 2025-01-05 18:39:44 +0530 |
commit | 88bdc03019a392d16403330898d257bdeeb0ecc9 (patch) | |
tree | 4bc7ef3721931c4b1f22bcedb141392d8c7d2428 /os/kay/modules/www.nix | |
parent | 8e3b4dc1cb7565168fe95ab088d0c391b2e20388 (diff) |
kay/matrix: fix sliding sync
Diffstat (limited to 'os/kay/modules/www.nix')
-rw-r--r-- | os/kay/modules/www.nix | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/os/kay/modules/www.nix b/os/kay/modules/www.nix index 04181d0..6530281 100644 --- a/os/kay/modules/www.nix +++ b/os/kay/modules/www.nix @@ -6,8 +6,7 @@ let in { imports = [ - ./dendrite.nix - ./matrix-sliding-sync.nix + ./matrix ./cgit.nix ]; @@ -58,7 +57,7 @@ in "/.well-known/matrix/client".return = '' 200 '${builtins.toJSON { "m.homeserver".base_url = "https://${domain}"; - # "org.matrix.msc3575.proxy".url = "https://${domain}"; + "org.matrix.msc3575.proxy".url = "https://${domain}"; }}' ''; @@ -66,8 +65,8 @@ in config.services.dendrite.httpPort }"; - # "/_matrix/client/unstable/org.matrix.msc3575/sync".proxyPass = - # "http://${config.services.matrix-sliding-sync.settings.SYNCV3_BINDADDR}"; + "/_matrix/client/unstable/org.matrix.msc3575/sync".proxyPass = + "http://${config.services.matrix-sliding-sync-dirty.settings.SYNCV3_BINDADDR}"; }; }; |