Add Matrix Conduit service configuration to Nix setup

This commit is contained in:
Root User 2026-02-10 00:29:03 +01:00
parent 139345f84e
commit d234901432
Signed by: root
GPG key ID: 087F0A95E5766D72
2 changed files with 42 additions and 1 deletions

View file

@ -114,6 +114,13 @@
entryPoints = ["websecure"];
tls = {};
};
matrix = {
rule = "Host(`lgbtq.prg-radio.org`)";
service = "matrix";
entryPoints = ["websecure"];
tls = {};
};
};
http.services = {
forgejo.loadBalancer = {
@ -133,6 +140,12 @@
{url = "http://10.1.1.249:8087";}
];
};
matrix.loadBalancer = {
servers = [
{ url = "http://10.1.1.248:12244"; }
];
};
};
# TCP routing for TeamSpeak
@ -205,4 +218,4 @@
system.stateVersion = "25.11";
};
}
}