feat: add git

This commit is contained in:
Katharina Heidenreich 2026-04-08 20:39:31 +02:00
parent 7eaceeac27
commit 059bac76d1
2 changed files with 20 additions and 1 deletions

18
config/endpoints/git.nix Normal file
View file

@ -0,0 +1,18 @@
let
net = import ../network.nix;
in
[
{
type = "proxy";
domain = "git.${net.devices.remote_proxy.domain}";
endpoint = "/";
force_ssl = true;
port = 443;
content = {
type = "service";
ip = net.devices.tuserver.ip;
port = 3000;
proxyWebsockets = false;
};
}
]