18 lines
No EOL
315 B
Nix
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;
|
|
};
|
|
}
|
|
] |