about summary refs log tree commit diff
path: root/modules/services
diff options
context:
space:
mode:
Diffstat (limited to 'modules/services')
-rw-r--r--modules/services/matrix-homeserver.nix9
1 files changed, 9 insertions, 0 deletions
diff --git a/modules/services/matrix-homeserver.nix b/modules/services/matrix-homeserver.nix
index a29ecc6..56e9adf 100644
--- a/modules/services/matrix-homeserver.nix
+++ b/modules/services/matrix-homeserver.nix
@@ -151,6 +151,15 @@ in
       '';
 
       locations."~* ^(\\/_matrix|\\/_synapse\\/client)".proxyPass = "http://[::1]:${toString httpPort}";
+      locations."/_synapse/admin" = {
+        # TODO: set up proper tailscale auth
+        extraConfig = ''
+          allow 100.64.0.0/10;
+          deny all;
+        '';
+
+        proxyPass = "http://[::1]:${toString httpPort}";
+      };
     };
 
     services.nginx.virtualHosts.${cfg.domain} =