mirror of
https://github.com/tuxdotrs/tnvim.git
synced 2025-07-06 21:36:34 +05:30
refactor: categorised apps
This commit is contained in:
22
modules/nixos/selfhosted/uptime-kuma.nix
Normal file
22
modules/nixos/selfhosted/uptime-kuma.nix
Normal file
@ -0,0 +1,22 @@
|
||||
{lib, ...}: {
|
||||
services = {
|
||||
uptime-kuma = {
|
||||
enable = true;
|
||||
};
|
||||
|
||||
nginx = {
|
||||
enable = lib.mkForce true;
|
||||
virtualHosts = {
|
||||
"uptime.tux.rs" = {
|
||||
forceSSL = true;
|
||||
useACMEHost = "tux.rs";
|
||||
locations = {
|
||||
"/" = {
|
||||
proxyPass = "http://localhost:3001";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user