pi/config/endpoints/git.nix
Katharina Heidenreich 059bac76d1 feat: add git
2026-04-08 20:42:10 +02:00

18 lines
No EOL
315 B
Nix

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;
};
}
]