MacBook.local-2024-12-09-06-28-39

This commit is contained in:
Alexander Szczepanski
2024-12-09 06:28:39 +01:00
parent 324c1545fd
commit 5b6bdd88b7
19 changed files with 10 additions and 557 deletions

View File

@ -0,0 +1,26 @@
{
config,
lib,
pkgs,
...
}: {
services = {
uptime-kuma = {
enable = true;
settings = {
PORT = "4000";
HOST = "127.0.0.1";
};
};
nginx = {
virtualHosts = {
"uptime.szczepan.ski" = {
forceSSL = true;
enableACME = true;
locations = {"/" = {proxyPass = "http://127.0.0.1:4000/";};};
};
};
};
};
}