modify mautrix.nix

This commit is contained in:
k3t
2026-07-28 11:13:15 -06:00
parent f0294a80ce
commit a386bd81c3
+10 -1
View File
@@ -67,5 +67,14 @@
log-driver = "journald"; log-driver = "journald";
}; };
}; };
services.nginx.virtualHosts."discord-media-mxc.k3t.dev".locations."/" = {
proxyPass = "http://127.0.0.1:29334";
proxyWebsockets = true;
};
# Allow podman containers to access continuwuity
networking.firewall.interfaces = let
matchAll = if !config.networking.nftables.enable then "podman+" else "podman*";
in {
"${matchAll}".allowedTCPPorts = [ 6167 ];
};
} }