18 lines
254 B
Nix
18 lines
254 B
Nix
|
{
|
||
|
hlConfig,
|
||
|
...
|
||
|
}:
|
||
|
rec {
|
||
|
hostname = "wings1";
|
||
|
managed = false;
|
||
|
ip = "192.168.10.190";
|
||
|
|
||
|
traefikRoutes = [
|
||
|
{
|
||
|
name = "${hostname}";
|
||
|
rule = "Host(`wings1.${hlConfig.shortDomain}`)";
|
||
|
target = "http://${ip}:443";
|
||
|
}
|
||
|
];
|
||
|
}
|