mirror of
https://github.com/tuxdotrs/tnvim.git
synced 2025-07-06 05:26:33 +05:30
23 lines
394 B
Nix
23 lines
394 B
Nix
{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";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|