feat: add wekan
This commit is contained in:
parent
df9367d12f
commit
d06fb16f44
3 changed files with 31 additions and 0 deletions
|
|
@ -82,6 +82,23 @@ rec {
|
||||||
};
|
};
|
||||||
domainOverride = "nudelerde.de";
|
domainOverride = "nudelerde.de";
|
||||||
};
|
};
|
||||||
|
"wekan" = {
|
||||||
|
ip = ips.pi;
|
||||||
|
reverse_proxy = {
|
||||||
|
port = 8081;
|
||||||
|
ssl = true;
|
||||||
|
allowExternConnections = true;
|
||||||
|
listen = [
|
||||||
|
{
|
||||||
|
port = 80;
|
||||||
|
}
|
||||||
|
{
|
||||||
|
port = 443;
|
||||||
|
ssl = true;
|
||||||
|
}];
|
||||||
|
};
|
||||||
|
domainOverride = "wekan.nudelerde.de";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
_serviceNames = (builtins.attrNames services);
|
_serviceNames = (builtins.attrNames services);
|
||||||
|
|
|
||||||
|
|
@ -9,5 +9,6 @@
|
||||||
./unbound.nix
|
./unbound.nix
|
||||||
./autossh.nix
|
./autossh.nix
|
||||||
./continuwuity.nix
|
./continuwuity.nix
|
||||||
|
./wekan.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
13
services/wekan.nix
Normal file
13
services/wekan.nix
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
{ config, pkgs, ... }:
|
||||||
|
|
||||||
|
let
|
||||||
|
net = import ../data/network.nix;
|
||||||
|
in
|
||||||
|
{
|
||||||
|
services.vikunja = {
|
||||||
|
enable = true;
|
||||||
|
frontendHostname = "wekan";
|
||||||
|
frontendScheme = "http";
|
||||||
|
port = 8081;
|
||||||
|
};
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue