infrastructure/hosts/phoenix.lewd.wtf/services/vikunja.nix

21 lines
400 B
Nix
Raw Normal View History

2024-02-10 18:26:29 +00:00
{ pkgs, ...}:
{
services.vikunja = {
enable = true;
frontendScheme = "https";
frontendHostname = "todo.lewd.wtf";
};
services.nginx.virtualHosts."todo.lewd.wtf" = {
enableACME = true;
forceSSL = true;
2024-04-11 14:58:07 +00:00
locations = {
"/" = {
proxyPass = "http://localhost:3456";
extraConfig = ''
client_max_body_size 20M;
'';
};
};
2024-02-10 18:26:29 +00:00
};
}