nix/modules/vikunja.nix (view raw)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
{ ... }:
{
services.caddy.virtualHosts."vikunja.olexsmir.xyz".extraConfig = ''
reverse_proxy localhost:3456
'';
services.vikunja = {
enable = true;
frontendScheme = "https";
frontendHostname = "vikunja.olexsmir.xyz";
settings = {
service = {
enableregistration = true;
};
};
};
}
|