14 lines
No EOL
252 B
Nix
14 lines
No EOL
252 B
Nix
let
|
|
net = import ../network.nix;
|
|
web = import ../../intermediate/web.nix;
|
|
in
|
|
[
|
|
{
|
|
type = "web";
|
|
domain = net.devices.remote_proxy.domain;
|
|
endpoint = "/";
|
|
force_ssl = true;
|
|
port = 443;
|
|
content = web.storePayloads.home;
|
|
}
|
|
] |