14 lines
201 B
Nix
14 lines
201 B
Nix
{ ... }:
|
|
let
|
|
fqdn = "trackmap.freun.dev";
|
|
port = 3200;
|
|
in
|
|
{
|
|
services.gtrackmap = {
|
|
enable = true;
|
|
inherit port;
|
|
};
|
|
|
|
modules.webserver.vHosts.${fqdn}.locations."/".proxyPort = port;
|
|
}
|